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 ncoghlan
Recipients Thorney, eric.araujo, ncoghlan, pitrou, rhettinger
Date 2012-02-20.12:44:22
SpamBayes Score 0.0025248954
Marked as misclassified No
Message-id <1329741862.73.0.530848122991.issue12428@psf.upfronthosting.co.za>
In-reply-to
Content
Just noticed one minor nit with the patch: the pure Python version of functools.partial should support "func" as a keyword argument that is passed to the underlying object. The trick is to declare a positional only argument like this:

def f(*args, **kwds):
    first, *args = args
    # etc...
History
Date User Action Args
2012-02-20 12:44:22ncoghlansetrecipients: + ncoghlan, rhettinger, pitrou, eric.araujo, Thorney
2012-02-20 12:44:22ncoghlansetmessageid: <1329741862.73.0.530848122991.issue12428@psf.upfronthosting.co.za>
2012-02-20 12:44:22ncoghlanlinkissue12428 messages
2012-02-20 12:44:22ncoghlancreate