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 andersk
Recipients andersk
Date 2011-08-26.02:56:52
SpamBayes Score 2.31482e-05
Marked as misclassified No
Message-id <1314327413.55.0.669531913229.issue12844@psf.upfronthosting.co.za>
In-reply-to
Content
I guess the desugaring is slightly more complicated in the case where the original function call already used *args or **kwargs:
  f(arg0, …, arg999, *args, k0=v0, …, k999=v999, **kwargs)
becomes something like
  f(*((arg0, …, arg999) + args),
    **dict({'k0': 'v0', …, 'k999': 'v999'}, **kwargs))
History
Date User Action Args
2011-08-26 02:56:53andersksetrecipients: + andersk
2011-08-26 02:56:53andersksetmessageid: <1314327413.55.0.669531913229.issue12844@psf.upfronthosting.co.za>
2011-08-26 02:56:52andersklinkissue12844 messages
2011-08-26 02:56:52anderskcreate