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 ronaldoussoren
Recipients christian.heimes, ronaldoussoren, xxm
Date 2021-01-11.08:17:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1610353061.04.0.92453154016.issue42887@roundup.psfhosted.org>
In-reply-to
Content
This is a recursion problem, "mystr" will be equivalent to 'hello123'.__sizeof__.__sizeof__. ...(100K repetition)... .__sizeof__.  The dealloc of "mystr" will cause recursive calls to tp_dealloc along the entire chain and that can exhaust the C stack.
History
Date User Action Args
2021-01-11 08:17:41ronaldoussorensetrecipients: + ronaldoussoren, christian.heimes, xxm
2021-01-11 08:17:41ronaldoussorensetmessageid: <1610353061.04.0.92453154016.issue42887@roundup.psfhosted.org>
2021-01-11 08:17:41ronaldoussorenlinkissue42887 messages
2021-01-11 08:17:41ronaldoussorencreate