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 xtreak
Recipients akaptur, michael.foord, rbcollins, xtreak
Date 2018-09-21.12:36:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1537533418.89.0.956365154283.issue24997@psf.upfronthosting.co.za>
In-reply-to
Content
Seems this is not reproducible at least on Python 3.6.4 and Master branch.

# bpo24997.py

from unittest.mock import *

m = Mock()
m(1,2)
m.call_args
print("1 ", m.call_args == call(1,2))
print("2 ", m.call_args != call(1,2))


# Master

./python.exe
Python 3.8.0a0 (heads/master:c510c6b8b6, Sep 21 2018, 11:10:24)
[Clang 7.0.2 (clang-700.1.81)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>
./python.exe ../backups/bpo24997.py
1  True
2  False

# Python 3.6.4

python3.6 ../backups/bpo24997.py
1  True
2  False


Thanks
History
Date User Action Args
2018-09-21 12:36:58xtreaksetrecipients: + xtreak, rbcollins, michael.foord, akaptur
2018-09-21 12:36:58xtreaksetmessageid: <1537533418.89.0.956365154283.issue24997@psf.upfronthosting.co.za>
2018-09-21 12:36:58xtreaklinkissue24997 messages
2018-09-21 12:36:58xtreakcreate