Antoine Pitrou <[EMAIL PROTECTED]> added the comment:

Are you sure the keys for those list objects aren't just equal to others
you insert in the dict?

Witness:

>>> d = {}
>>> d[1] = 'a'
>>> d
{1: 'a'}
>>> d[1.0] = 'b'
>>> d
{1: 'b'}

I'm not sure what the memory limit is for dict objects, but 16MB sounds
quite low.

----------
nosy: +pitrou

_______________________________________
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3104>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to