diff options
author | Victor Stinner <vstinner@python.org> | 2021-01-25 13:24:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-25 13:24:42 +0100 |
commit | db584bdad32d81e42b71871077a8008036f5c048 (patch) | |
tree | ef018339067b08456b55a083547f9427b817f1b3 /Misc/NEWS.d/next | |
parent | bpo-43013: Fix old tkinter module names in idlelib (GH-24326) (diff) | |
download | cpython-db584bdad32d81e42b71871077a8008036f5c048.tar.gz cpython-db584bdad32d81e42b71871077a8008036f5c048.tar.bz2 cpython-db584bdad32d81e42b71871077a8008036f5c048.zip |
bpo-42955: Add sys.modules_names (GH-24238)
Add sys.module_names, containing the list of the standard library
module names.
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-01-18-11-59-46.bpo-42955.CSWLC9.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-01-18-11-59-46.bpo-42955.CSWLC9.rst b/Misc/NEWS.d/next/Library/2021-01-18-11-59-46.bpo-42955.CSWLC9.rst new file mode 100644 index 00000000000..0631acd7a98 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-01-18-11-59-46.bpo-42955.CSWLC9.rst @@ -0,0 +1,2 @@ +Add :data:`sys.module_names`, containing the list of the standard library +module names. Patch by Victor Stinner. |