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 vstinner
Recipients christian.heimes, gvanrossum, kumaraditya, miss-islington, sobolevn, vstinner
Date 2022-02-23.17:07:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
> New changeset c0a5ebeb1239020f2ecc199053bb1a70d78841a1 by Kumar Aditya in branch 'main':
> bpo-46430: Intern strings in deep-frozen modules  (GH-30683)

This change introduced a memory leak at Python exit.

Before:

$ ./python -X showrefcount -c pass
[0 refs, 0 blocks]

After:

$ ./python -X showrefcount -c pass
[0 refs, 344 blocks]
History
Date User Action Args
2022-02-23 17:07:41vstinnersetrecipients: + vstinner, gvanrossum, christian.heimes, miss-islington, sobolevn, kumaraditya
2022-02-23 17:07:40vstinnersetmessageid: <[email protected]>
2022-02-23 17:07:40vstinnerlinkissue46430 messages
2022-02-23 17:07:40vstinnercreate