Elizabeth Myers added the comment: Your test case, nor the one I wrote, trigger Python 2.7.5 nor 3.3.2 on Linux 64-bit:
try: xrange except: xrange = range d = {} r = 10000000 ctr = 0 for n in xrange(r): d[n] = n ctr += 1 assert len(d) == r assert ctr == r ---------- nosy: +Elizacat _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue19443> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com