[Python-checkins] bpo-42955: Add _overlapped to sys.stdlib_module_names (GH-25122)

vstinner webhook-mailer at python.org
Wed Mar 31 20:28:36 EDT 2021


https://github.com/python/cpython/commit/ad493edf5791e7abb2588852e876b8584945c653
commit: ad493edf5791e7abb2588852e876b8584945c653
branch: master
author: Victor Stinner <vstinner at python.org>
committer: vstinner <vstinner at python.org>
date: 2021-04-01T02:28:23+02:00
summary:

bpo-42955: Add _overlapped to sys.stdlib_module_names (GH-25122)

files:
M Python/stdlib_module_names.h
M Tools/scripts/generate_stdlib_module_names.py

diff --git a/Python/stdlib_module_names.h b/Python/stdlib_module_names.h
index 980438545ac2f..b09b8dc7a394a 100644
--- a/Python/stdlib_module_names.h
+++ b/Python/stdlib_module_names.h
@@ -52,6 +52,7 @@ static const char* _Py_stdlib_module_names[] = {
 "_opcode",
 "_operator",
 "_osx_support",
+"_overlapped",
 "_pickle",
 "_posixshmem",
 "_posixsubprocess",
diff --git a/Tools/scripts/generate_stdlib_module_names.py b/Tools/scripts/generate_stdlib_module_names.py
index 046b9eb1d2df6..716a6d4b7a07f 100644
--- a/Tools/scripts/generate_stdlib_module_names.py
+++ b/Tools/scripts/generate_stdlib_module_names.py
@@ -42,6 +42,7 @@
 # Windows extension modules
 WINDOWS_MODULES = (
     '_msi',
+    '_overlapped',
     '_testconsole',
     '_winapi',
     'msvcrt',



More information about the Python-checkins mailing list