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 benjamin.peterson
Recipients benjamin.peterson, python-dev, veky
Date 2015-07-05.15:53:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1436111611.96.0.0240925503241.issue24569@psf.upfronthosting.co.za>
In-reply-to
Content
Python 3.3.5 (default, Aug 19 2014, 23:45:33) 
[GCC 4.7.3] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> {0:1, 0:2}
{0: 2}

Python 2.7.9 (default, Dec 24 2014, 23:52:11) 
[GCC 4.8.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> {0:1, 0:2}
{0: 2}
History
Date User Action Args
2015-07-05 15:53:32benjamin.petersonsetrecipients: + benjamin.peterson, python-dev, veky
2015-07-05 15:53:31benjamin.petersonsetmessageid: <1436111611.96.0.0240925503241.issue24569@psf.upfronthosting.co.za>
2015-07-05 15:53:31benjamin.petersonlinkissue24569 messages
2015-07-05 15:53:31benjamin.petersoncreate