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 serhiy.storchaka
Recipients eric.smith, eric.snow, serhiy.storchaka
Date 2015-10-21.06:32:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1445409120.81.0.47490278596.issue25449@psf.upfronthosting.co.za>
In-reply-to
Content
The patch was not ready for commit. The problem is that test_issue24347 fails in CPythonOrderedDictSubclassTests. The failure is random, you need to run test several times to encounter it.

Experimenting with this test I found other bug probably related to issue24347.

>>> from collections import OrderedDict
>>> od = OrderedDict()
>>> dict.__setitem__(od, 1, 2)
>>> od
OrderedDict([<NULL>])

I expected rather raising an exception or showing an empty OrderedDict, that exposing NULL.
History
Date User Action Args
2015-10-21 06:32:00serhiy.storchakasetrecipients: + serhiy.storchaka, eric.smith, eric.snow
2015-10-21 06:32:00serhiy.storchakasetmessageid: <1445409120.81.0.47490278596.issue25449@psf.upfronthosting.co.za>
2015-10-21 06:32:00serhiy.storchakalinkissue25449 messages
2015-10-21 06:32:00serhiy.storchakacreate