diff options
author | Victor Stinner <vstinner@python.org> | 2024-09-10 09:54:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-10 09:54:17 (GMT) |
commit | fb1b51a58df4315f7ef3171a5abeb74f132b0971 (patch) | |
tree | 7b76c8a46863c310f18a18b7b4802f710313e9ae /Python | |
parent | b52de7e02dba9e1f176d6d978d782fbd0509311e (diff) | |
download | cpython-fb1b51a58df4315f7ef3171a5abeb74f132b0971.zip cpython-fb1b51a58df4315f7ef3171a5abeb74f132b0971.tar.gz cpython-fb1b51a58df4315f7ef3171a5abeb74f132b0971.tar.bz2 |
gh-123892: Add "_wmi" to sys.stdlib_module_names (#123893)
Diffstat (limited to 'Python')
-rw-r--r-- | Python/stdlib_module_names.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/stdlib_module_names.h b/Python/stdlib_module_names.h index 4d595d9..c8cdb93 100644 --- a/Python/stdlib_module_names.h +++ b/Python/stdlib_module_names.h @@ -97,6 +97,7 @@ static const char* _Py_stdlib_module_names[] = { "_weakref", "_weakrefset", "_winapi", +"_wmi", "_zoneinfo", "abc", "annotationlib", |