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 cjw296
Recipients cjw296, michael.foord
Date 2018-11-13.08:05:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1542096332.14.0.788709270274.issue35226@psf.upfronthosting.co.za>
In-reply-to
Content
$ python3
Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 26 2018, 23:26:24) 
[Clang 6.0 (clang-600.0.57)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from unittest.mock import call
>>> call(x=1) == call(x=2)
False

Good so far?

>>> call(x=1).foo == call(x=2).foo
True

Eep, I think a lot of people might find that quite surprising!
History
Date User Action Args
2018-11-13 08:05:32cjw296setrecipients: + cjw296, michael.foord
2018-11-13 08:05:32cjw296setmessageid: <1542096332.14.0.788709270274.issue35226@psf.upfronthosting.co.za>
2018-11-13 08:05:31cjw296linkissue35226 messages
2018-11-13 08:05:31cjw296create