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 serhiy.storchaka
Recipients methane, serhiy.storchaka, vstinner, xiang.zhang
Date 2016-11-03.06:50:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1478155812.55.0.313495878633.issue28580@psf.upfronthosting.co.za>
In-reply-to
Content
Following example causes a crash in debug build:

d = dict.fromkeys(range(100))
for k in range(99):
    del d[k]

it = iter(d)
assert next(it) == 99
d.clear()
d[0] = None
next(it)
History
Date User Action Args
2016-11-03 06:50:12serhiy.storchakasetrecipients: + serhiy.storchaka, vstinner, methane, xiang.zhang
2016-11-03 06:50:12serhiy.storchakasetmessageid: <1478155812.55.0.313495878633.issue28580@psf.upfronthosting.co.za>
2016-11-03 06:50:12serhiy.storchakalinkissue28580 messages
2016-11-03 06:50:12serhiy.storchakacreate