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 terry.reedy
Recipients christian.heimes, ronaldoussoren, terry.reedy, xxm
Date 2021-01-15.23:38:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1610753919.2.0.727222169802.issue42887@roundup.psfhosted.org>
In-reply-to
Content
Xinmeng, to verify Ronald's explanation, run this instead

mystr  = "hello123"
for x in range(1000000):
    mystr = mystr.__sizeof__()
input('>')  # Hit Enter to continue.
del mystr   # Expect crash here.
input('<')  # And never get here.
History
Date User Action Args
2021-01-15 23:38:39terry.reedysetrecipients: + terry.reedy, ronaldoussoren, christian.heimes, xxm
2021-01-15 23:38:39terry.reedysetmessageid: <1610753919.2.0.727222169802.issue42887@roundup.psfhosted.org>
2021-01-15 23:38:39terry.reedylinkissue42887 messages
2021-01-15 23:38:39terry.reedycreate