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 NeilGirdhar
Recipients Joshua.Landau, NeilGirdhar, SilentGhost, r.david.murray
Date 2015-01-26.16:43:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1422290610.72.0.0702290988024.issue23316@psf.upfronthosting.co.za>
In-reply-to
Content
After thinking about this a bit more, my suggestion is not to fix it.  Instead, I suggest that PEP 8 be modified to suggest that all positional arguments and iterable argument unpackings precede keyword arguments and keyword argument unpackings.  Then, a tool like autopep8 is free to reorganize argument lists.  Such reorganization will not be possible if f(*a(), b=b()) is different than f(b=b(), *a()).
History
Date User Action Args
2015-01-26 16:43:30NeilGirdharsetrecipients: + NeilGirdhar, r.david.murray, SilentGhost, Joshua.Landau
2015-01-26 16:43:30NeilGirdharsetmessageid: <1422290610.72.0.0702290988024.issue23316@psf.upfronthosting.co.za>
2015-01-26 16:43:30NeilGirdharlinkissue23316 messages
2015-01-26 16:43:30NeilGirdharcreate