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 theller
Recipients theller
Date 2014-04-02.07:57:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1396425472.15.0.80240218298.issue21130@psf.upfronthosting.co.za>
In-reply-to
Content
I think that 'equivalent' functools.partial objects should compare equal, so the following snippet SHOULD print True:

>>> import functools
>>> f = lambda x: x
>>> a = functools.partial(f, 42)
>>> b = functools.partial(f, 42)
>>> a == b
False
>>>
History
Date User Action Args
2014-04-02 07:57:52thellersetrecipients: + theller
2014-04-02 07:57:52thellersetmessageid: <1396425472.15.0.80240218298.issue21130@psf.upfronthosting.co.za>
2014-04-02 07:57:52thellerlinkissue21130 messages
2014-04-02 07:57:51thellercreate