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 pitrou
Recipients pitrou, rhettinger
Date 2010-09-15.21:12:37
SpamBayes Score 0.020195562
Marked as misclassified No
Message-id <1284585159.01.0.70557172329.issue9865@psf.upfronthosting.co.za>
In-reply-to
Content
Ordered dicts pretend to have the memory consumption as dicts:

>>> import sys, collections
>>> sys.getsizeof({})
280
>>> sys.getsizeof(collections.OrderedDict())
280
History
Date User Action Args
2010-09-15 21:12:39pitrousetrecipients: + pitrou, rhettinger
2010-09-15 21:12:39pitrousetmessageid: <1284585159.01.0.70557172329.issue9865@psf.upfronthosting.co.za>
2010-09-15 21:12:37pitroulinkissue9865 messages
2010-09-15 21:12:37pitroucreate