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 Wilfred.Hughes
Recipients Wilfred.Hughes, michael.foord
Date 2015-08-13.09:15:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1439457344.15.0.760171019075.issue24857@psf.upfronthosting.co.za>
In-reply-to
Content
This bug is particularly subtle because it only applies to *long* strings.

>>> m.call_args == "f"
False
>>> m.call_args == "fo"
False
>>> m.call_args == "foo"
False
>>> m.call_args == "foob"
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "build/bdist.linux-x86_64/egg/mock.py", line 2061, in __eq__
ValueError: too many values to unpack
History
Date User Action Args
2015-08-13 09:15:44Wilfred.Hughessetrecipients: + Wilfred.Hughes, michael.foord
2015-08-13 09:15:44Wilfred.Hughessetmessageid: <1439457344.15.0.760171019075.issue24857@psf.upfronthosting.co.za>
2015-08-13 09:15:44Wilfred.Hugheslinkissue24857 messages
2015-08-13 09:15:43Wilfred.Hughescreate