Message253277
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. |
|
| Date |
User |
Action |
Args |
| 2015-10-21 06:32:00 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, eric.smith, eric.snow |
| 2015-10-21 06:32:00 | serhiy.storchaka | set | messageid: <[email protected]> |
| 2015-10-21 06:32:00 | serhiy.storchaka | link | issue25449 messages |
| 2015-10-21 06:32:00 | serhiy.storchaka | create | |
|