[issue3473] In function call, keyword arguments could follow *args

2014-08-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3ae399c6ecf6 by Benjamin Peterson in branch '2.7': correct call grammar error (#3473) http://hg.python.org/cpython/rev/3ae399c6ecf6 -- nosy: +python-dev ___ Python tracker

[issue3473] In function call, keyword arguments could follow *args

2014-08-27 Thread Martijn Pieters
Martijn Pieters added the comment: The documentation change in this patch introduced a bug in the Call grammar: | "*" `expression` ["," "*" `expression`] ["," "**" `expression`] instead of | "*" `expression` ["," `keyword_arguments`] ["," "**" `expression`] giving the impression that `*expres

[issue3473] In function call, keyword arguments could follow *args

2008-09-03 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: The compiler package was fixed some time ago with r65891 ___ Python tracker <[EMAIL PROTECTED]> ___ _

[issue3473] In function call, keyword arguments could follow *args

2008-09-03 Thread Jesús Cea Avión
Changes by Jesús Cea Avión <[EMAIL PROTECTED]>: -- nosy: +jcea ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list mailing l

[issue3473] In function call, keyword arguments could follow *args

2008-08-19 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Now test_compiler is breaking for us because the compiler package can't handle the change. ___ Python tracker <[EMAIL PROTECTED]> __

[issue3473] In function call, keyword arguments could follow *args

2008-08-19 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Done for py3k in r65877. ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list

[issue3473] In function call, keyword arguments could follow *args

2008-08-19 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Applied for 2.6 in r65872. -- status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue3473] In function call, keyword arguments could follow *args

2008-08-19 Thread Barry A. Warsaw
Barry A. Warsaw <[EMAIL PROTECTED]> added the comment: Guido's approved it, so please go ahead and add it before beta 3. -- resolution: -> accepted ___ Python tracker <[EMAIL PROTECTED]>

[issue3473] In function call, keyword arguments could follow *args

2008-08-17 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: Barry, is it still time for this to be included in 2.6b3? Guido already approved the idea: http://mail.python.org/pipermail/python-3000/2008-July/014506.html -- assignee: rhettinger -> amaury.forgeotdarc nosy: +barry __

[issue3473] In function call, keyword arguments could follow *args

2008-08-15 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Ping! -- nosy: +georg.brandl ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-b

[issue3473] In function call, keyword arguments could follow *args

2008-08-13 Thread Terry J. Reedy
Terry J. Reedy <[EMAIL PROTECTED]> added the comment: Another use case: upon reading A.Baxter's Porting to 3 talk, I realized, slightly generalizing from his example, that print(s.join(map(str,it))) == print(*it,sep=s) -- or would, except that it currently has to be written non-intuitively as pri

[issue3473] In function call, keyword arguments could follow *args

2008-08-01 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: I will not have internet access for the next week. Raymond, would you take care of this issue? -- assignee: amaury.forgeotdarc -> rhettinger ___ Python tracker <[EMAIL PROTECTED]>

[issue3473] In function call, keyword arguments could follow *args

2008-07-31 Thread Nick Coghlan
Nick Coghlan <[EMAIL PROTECTED]> added the comment: I'll have a look at this in the next day or two. -- nosy: +ncoghlan ___ Python tracker <[EMAIL PROTECTED]> ___ _

[issue3473] In function call, keyword arguments could follow *args

2008-07-31 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: The patches look good to me. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue3473] In function call, keyword arguments could follow *args

2008-07-31 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: Patches for both versions are attached. Added file: http://bugs.python.org/file11011/kwargs26.patch ___ Python tracker <[EMAIL PROTECTED]> _

[issue3473] In function call, keyword arguments could follow *args

2008-07-31 Thread Amaury Forgeot d'Arc
Changes by Amaury Forgeot d'Arc <[EMAIL PROTECTED]>: -- keywords: +patch Added file: http://bugs.python.org/file11010/kwargs30.patch ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3473] In function call, keyword arguments could follow *args

2008-07-30 Thread Raymond Hettinger
Raymond Hettinger <[EMAIL PROTECTED]> added the comment: +1 for applying to 2.6. izip_longest() is a perfect example of where it's important. -- nosy: +rhettinger ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3473] In function call, keyword arguments could follow *args

2008-07-30 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: Should this apply to 2.6 as well? See r65321, I find the last line easier to read when arguments are in this order. def grouper(n, iterable, fillvalue=None): args = [iter(iterable)] * n return izip_longest(*args, fil

[issue3473] In function call, keyword arguments could follow *args

2008-07-30 Thread Amaury Forgeot d'Arc
New submission from Amaury Forgeot d'Arc <[EMAIL PROTECTED]>: functions with keyword-only arguments have this form: def f(x, *args, y): pass parameters can appear after the *arg, they are required to be passed by keyword. It would be more consistent to allow this function call: f