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 Cruise Liu
Recipients Cruise Liu
Date 2015-10-14.13:20:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1444828803.02.0.823696555455.issue25406@psf.upfronthosting.co.za>
In-reply-to
Content
Following code will crash python. Tested on linux and windows.

Python 3.5.0 (default, Sep 20 2015, 11:28:25) 
[GCC 5.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import collections
>>> x = collections.OrderedDict([ ('a', 1), ('b', 2), ('c', 3) ])
>>> x.move_to_end('c', last = False)
>>> x.move_to_end('a', last = False)
>>> x
Segmentation fault (core dumped)
History
Date User Action Args
2015-10-14 13:20:03Cruise Liusetrecipients: + Cruise Liu
2015-10-14 13:20:03Cruise Liusetmessageid: <1444828803.02.0.823696555455.issue25406@psf.upfronthosting.co.za>
2015-10-14 13:20:02Cruise Liulinkissue25406 messages
2015-10-14 13:20:02Cruise Liucreate