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 Elizacat
Recipients Elizacat, miltmobley
Date 2013-10-30.04:58:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1383109112.04.0.0952515383888.issue19443@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2013-10-30 04:58:32Elizacatsetrecipients: + Elizacat, miltmobley
2013-10-30 04:58:32Elizacatsetmessageid: <1383109112.04.0.0952515383888.issue19443@psf.upfronthosting.co.za>
2013-10-30 04:58:32Elizacatlinkissue19443 messages
2013-10-30 04:58:31Elizacatcreate