diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2021-09-13 16:18:37 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-13 16:18:37 -0600 |
commit | a2d8c4b81b8e68e2ffe10945f7ca69174c14e52a (patch) | |
tree | c46c7aead37c0a393f13ef0fb8bb97ea9a9836c6 /Python/frozen.c | |
parent | 1fc41ae8709e20d741bd86c2345173688a5e84b0 (diff) | |
download | cpython-git-a2d8c4b81b8e68e2ffe10945f7ca69174c14e52a.tar.gz |
bpo-45019: Do some cleanup related to frozen modules. (gh-28319)
There are a few things I missed in gh-27980. This is a follow-up that will make subsequent PRs cleaner. It includes fixes to tests and tools that reference the frozen modules.
https://bugs.python.org/issue45019
Diffstat (limited to 'Python/frozen.c')
-rw-r--r-- | Python/frozen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/frozen.c b/Python/frozen.c index 67aff2ed2e..2975b1fcbe 100644 --- a/Python/frozen.c +++ b/Python/frozen.c @@ -47,7 +47,7 @@ /* Note that a negative size indicates a package. */ static const struct _frozen _PyImport_FrozenModules[] = { - /* importlib */ + /* import system */ {"_frozen_importlib", _Py_M__importlib__bootstrap, (int)sizeof(_Py_M__importlib__bootstrap)}, {"_frozen_importlib_external", _Py_M__importlib__bootstrap_external, |