diff options
author | Victor Stinner <vstinner@python.org> | 2020-03-25 17:31:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-25 17:31:55 (GMT) |
commit | ace018ca47c03ca699603341b12781b5329d2eaa (patch) | |
tree | 340998911a772910c8274a6a158653816d39a9c0 /Misc | |
parent | 7668a8bc93c2bd573716d1bea0f52ea520502b28 (diff) | |
download | cpython-ace018ca47c03ca699603341b12781b5329d2eaa.zip cpython-ace018ca47c03ca699603341b12781b5329d2eaa.tar.gz cpython-ace018ca47c03ca699603341b12781b5329d2eaa.tar.bz2 |
bpo-40050: Rephrase NEWS entry (GH-19148)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-03-24-16-17-20.bpo-40050.6GrOlz.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-03-24-16-17-20.bpo-40050.6GrOlz.rst b/Misc/NEWS.d/next/Library/2020-03-24-16-17-20.bpo-40050.6GrOlz.rst index f87e06e..0a8e24e 100644 --- a/Misc/NEWS.d/next/Library/2020-03-24-16-17-20.bpo-40050.6GrOlz.rst +++ b/Misc/NEWS.d/next/Library/2020-03-24-16-17-20.bpo-40050.6GrOlz.rst @@ -1,3 +1,3 @@ -Fix ``importlib._bootstrap_external``. Remove two unused imports importlib: -``_thread`` and ``_weakref``. Avoid creating a new ``winreg`` builtin module if -it's already available in :data:`sys.modules`. +Fix ``importlib._bootstrap_external``: avoid creating a new ``winreg`` builtin +module if it's already available in :data:`sys.modules`, and remove redundant +imports. |