diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2021-09-24 20:35:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-24 20:35:47 (GMT) |
commit | 7c801e0fa603b155eab3fd19698aa90854ac5a7b (patch) | |
tree | b949ff73ff706412848c8c3a2f67c85fa105716c /Python | |
parent | bfe26bbad787c124f0ce144cff1b513ef9d2dc9c (diff) | |
download | cpython-7c801e0fa603b155eab3fd19698aa90854ac5a7b.zip cpython-7c801e0fa603b155eab3fd19698aa90854ac5a7b.tar.gz cpython-7c801e0fa603b155eab3fd19698aa90854ac5a7b.tar.bz2 |
bpo-45020: Fix some corner cases for frozen module generation. (gh-28538)
This also includes some cleanup in preparation for a PR to make the "make all" output less noisy.
https://bugs.python.org/issue45020
Diffstat (limited to 'Python')
-rw-r--r-- | Python/frozen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/frozen.c b/Python/frozen.c index 05b5281..f9ad07c 100644 --- a/Python/frozen.c +++ b/Python/frozen.c @@ -38,8 +38,8 @@ #include "Python.h" /* Includes for frozen modules: */ -#include "frozen_modules/importlib__bootstrap.h" -#include "frozen_modules/importlib__bootstrap_external.h" +#include "frozen_modules/importlib._bootstrap.h" +#include "frozen_modules/importlib._bootstrap_external.h" #include "frozen_modules/zipimport.h" #include "frozen_modules/abc.h" #include "frozen_modules/codecs.h" |