mirror of https://github.com/python/cpython
gh-123892: Add "_wmi" to sys.stdlib_module_names (#123893)
This commit is contained in:
parent
b52de7e02d
commit
fb1b51a58d
|
@ -0,0 +1 @@
|
|||
Add ``"_wmi"`` to :data:`sys.stdlib_module_names`. Patch by Victor Stinner.
|
|
@ -97,6 +97,7 @@ static const char* _Py_stdlib_module_names[] = {
|
|||
"_weakref",
|
||||
"_weakrefset",
|
||||
"_winapi",
|
||||
"_wmi",
|
||||
"_zoneinfo",
|
||||
"abc",
|
||||
"annotationlib",
|
||||
|
|
|
@ -54,6 +54,7 @@ WINDOWS_MODULES = {
|
|||
"_overlapped",
|
||||
"_testconsole",
|
||||
"_winapi",
|
||||
"_wmi",
|
||||
"msvcrt",
|
||||
"nt",
|
||||
"winreg",
|
||||
|
|
Loading…
Reference in New Issue