From 7c801e0fa603b155eab3fd19698aa90854ac5a7b Mon Sep 17 00:00:00 2001 From: Eric Snow Date: Fri, 24 Sep 2021 14:35:47 -0600 Subject: 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 --- Python/frozen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Python/frozen.c') 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" -- cgit v1.2.1