This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gstarck
Recipients gstarck
Date 2015-07-09.20:30:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1436473821.03.0.320210782017.issue24600@psf.upfronthosting.co.za>
In-reply-to
Content
Consider following:

Python 3.4.0 (default, Jun 19 2015, 14:20:21) 
[GCC 4.8.2] on linux

>>> def f(**kw): pass

>>> f(a=1 , )
>>> # ok

>>> f(**{'a': 1} )
>>> # ok

>>> # but :

>>> f(**{'a': 1} , )
SyntaxError: invalid syntax
>>> 

shouldn't the last form be also allowed as is the first one ??

if it is: Could I personnaly handle this fix ? I'd be very proud to bring (even such a low impact problem) my own stone to Python :)

Kind regards.
History
Date User Action Args
2015-07-09 20:30:21gstarcksetrecipients: + gstarck
2015-07-09 20:30:21gstarcksetmessageid: <1436473821.03.0.320210782017.issue24600@psf.upfronthosting.co.za>
2015-07-09 20:30:20gstarcklinkissue24600 messages
2015-07-09 20:30:20gstarckcreate