]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-42955: Add _overlapped to sys.stdlib_module_names (GH-25122)
authorVictor Stinner <vstinner@python.org>
Thu, 1 Apr 2021 00:28:23 +0000 (02:28 +0200)
committerGitHub <noreply@github.com>
Thu, 1 Apr 2021 00:28:23 +0000 (02:28 +0200)
Python/stdlib_module_names.h
Tools/scripts/generate_stdlib_module_names.py

index 980438545ac2f421000105277b899329184c196a..b09b8dc7a394ae5037ac18147110022485702ff0 100644 (file)
@@ -52,6 +52,7 @@ static const char* _Py_stdlib_module_names[] = {
 "_opcode",
 "_operator",
 "_osx_support",
+"_overlapped",
 "_pickle",
 "_posixshmem",
 "_posixsubprocess",
index 046b9eb1d2df62edd2c5d55140a93e26ca9b2f4a..716a6d4b7a07f3b154ea680aa87a63588db83d2b 100644 (file)
@@ -42,6 +42,7 @@ IGNORE = {
 # Windows extension modules
 WINDOWS_MODULES = (
     '_msi',
+    '_overlapped',
     '_testconsole',
     '_winapi',
     'msvcrt',