diff options
author | Victor Stinner <vstinner@python.org> | 2021-01-25 12:24:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-25 12:24:42 (GMT) |
commit | db584bdad32d81e42b71871077a8008036f5c048 (patch) | |
tree | ef018339067b08456b55a083547f9427b817f1b3 /Doc/whatsnew | |
parent | 879986d8a932c4524cb6ff822afc9537de16e28d (diff) | |
download | cpython-db584bdad32d81e42b71871077a8008036f5c048.zip cpython-db584bdad32d81e42b71871077a8008036f5c048.tar.gz cpython-db584bdad32d81e42b71871077a8008036f5c048.tar.bz2 |
bpo-42955: Add sys.modules_names (GH-24238)
Add sys.module_names, containing the list of the standard library
module names.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.10.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index d822dda..a6c3fbb 100644 --- a/Doc/whatsnew/3.10.rst +++ b/Doc/whatsnew/3.10.rst @@ -396,6 +396,10 @@ Add :data:`sys.orig_argv` attribute: the list of the original command line arguments passed to the Python executable. (Contributed by Victor Stinner in :issue:`23427`.) +Add :data:`sys.module_names`, containing the list of the standard library +module names. +(Contributed by Victor Stinner in :issue:`42955`.) + threading --------- |