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 Ido Michael, aeros, brett.cannon, corona10, eric.snow, lukasz.langa, ncoghlan, petdance, vstinner
Date 2020-03-25.18:01:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
FYI importlib leak was fixed in bpo-40050 by:

commit 83d46e0622d2efdf5f3bf8bf8904d0dcb55fc322
Author: Victor Stinner <[email protected]>
Date:   Tue Mar 24 18:03:34 2020 +0100

    bpo-40050: Fix importlib._bootstrap_external (GH-19135)
    
    Remove two unused imports: _thread and _weakref. Avoid creating a new
    winreg builtin module if it's already available in sys.modules.
    
    The winreg module is now stored as "winreg" rather than "_winreg".
History
Date User Action Args
2020-03-25 18:01:14vstinnersetrecipients: + vstinner, brett.cannon, ncoghlan, lukasz.langa, eric.snow, corona10, aeros, Ido Michael, petdance
2020-03-25 18:01:14vstinnersetmessageid: <[email protected]>
2020-03-25 18:01:14vstinnerlinkissue38691 messages
2020-03-25 18:01:14vstinnercreate