aboutsummaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2021-09-24 14:35:47 -0600
committerGitHub <noreply@github.com>2021-09-24 14:35:47 -0600
commit7c801e0fa603b155eab3fd19698aa90854ac5a7b (patch)
treeb949ff73ff706412848c8c3a2f67c85fa105716c /Python
parentbfe26bbad787c124f0ce144cff1b513ef9d2dc9c (diff)
downloadcpython3-7c801e0fa603b155eab3fd19698aa90854ac5a7b.tar.gz
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/frozen.c b/Python/frozen.c
index 05b5281cce..f9ad07c0b4 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"