[issue1909] Backport: Mixing default keyword arguments with *args

2010-06-26 Thread Ezio Melotti
Ezio Melotti added the comment: Now it's too late for this. Closing as out of date. -- keywords: -26backport nosy: +ezio.melotti resolution: -> out of date stage: -> committed/rejected status: open -> closed type: -> feature request ___ Python tr

[issue1909] Backport: Mixing default keyword arguments with *args

2010-04-28 Thread Benjamin Peterson
Benjamin Peterson added the comment: Wouldn't this imply a full backport of keyword only arguments? That seems unlikely at the moment. -- ___ Python tracker ___

[issue1909] Backport: Mixing default keyword arguments with *args

2010-04-28 Thread Antoine Pitrou
Antoine Pitrou added the comment: Besides someone having to produce the patch, it would also need the release manager's approval (Benjamin). -- nosy: +benjamin.peterson, pitrou ___ Python tracker _

[issue1909] Backport: Mixing default keyword arguments with *args

2010-04-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: Ok, I though 2.7 was in feature freeze. Updating version. -- versions: +Python 2.7 -Python 2.6 ___ Python tracker ___ __

[issue1909] Backport: Mixing default keyword arguments with *args

2010-04-28 Thread Raymond Hettinger
Raymond Hettinger added the comment: It should still be done if any one has the time. Guido approved it long ago. -- ___ Python tracker ___ __

[issue1909] Backport: Mixing default keyword arguments with *args

2010-04-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: Can this be closed as either fixed or out-or-date, as the case may be? -- nosy: +tjreedy ___ Python tracker ___

[issue1909] Backport: Mixing default keyword arguments with *args

2008-03-18 Thread Sean Reifschneider
Changes by Sean Reifschneider <[EMAIL PROTECTED]>: -- keywords: +26backport priority: -> normal __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bu

[issue1909] Backport: Mixing default keyword arguments with *args

2008-01-22 Thread Christian Heimes
Christian Heimes added the comment: Raymond Hettinger wrote: > Raymond Hettinger added the comment: > > I mistakenly thought you had done this for Py3.0. You're welcome, pal! :) I've created a backport of the kw only functions for 2.6 but that doesn't make me an expert on grammar.

[issue1909] Backport: Mixing default keyword arguments with *args

2008-01-22 Thread Raymond Hettinger
Raymond Hettinger added the comment: I mistakenly thought you had done this for Py3.0. -- assignee: tiran -> __ Tracker <[EMAIL PROTECTED]> __

[issue1909] Backport: Mixing default keyword arguments with *args

2008-01-22 Thread Christian Heimes
Christian Heimes added the comment: Why have you assigned the bug to me? I ain't no grammar expert. __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-lis

[issue1909] Backport: Mixing default keyword arguments with *args

2008-01-22 Thread Raymond Hettinger
New submission from Raymond Hettinger: Need to backport Py3.0's functionality so that the following is valid syntax: def f(a, *args, v=None): . . . -- assignee: tiran components: Interpreter Core messages: 61530 nosy: rhettinger, tiran severity: normal status: open title: Back