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 phsilva, vstinner
Date 2020-03-26.01:36:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1585186583.46.0.874084932961.issue40071@roundup.psfhosted.org>
In-reply-to
Content
The folowing test is enough to reproduce the leak:

    def test_ids_global(self):
        interp1 = interpreters.create()
        script, rpipe = _captured_script("pass")
        interpreters.run_string(interp1, script)
        rpipe.close()

        interp2 = interpreters.create()
        script, rpipe = _captured_script("pass")
        interpreters.run_string(interp2, script)
        rpipe.close()
History
Date User Action Args
2020-03-26 01:36:23vstinnersetrecipients: + vstinner, phsilva
2020-03-26 01:36:23vstinnersetmessageid: <1585186583.46.0.874084932961.issue40071@roundup.psfhosted.org>
2020-03-26 01:36:23vstinnerlinkissue40071 messages
2020-03-26 01:36:23vstinnercreate