summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Misc/NEWS3
-rw-r--r--Programs/_freeze_importlib.c1
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1eadf9f0eb..00feff705d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -211,6 +211,9 @@ Windows
Build
-----
+- Issue #27713: Surpress spurious build warnings when updating importlib's
+ bootstrap files. Patch by Xiang Zhang
+
- Issue #25825: Correct the references to Modules/python.exp, which is
required on AIX. The references were accidentally changed in 3.5.0a1.
diff --git a/Programs/_freeze_importlib.c b/Programs/_freeze_importlib.c
index aecb1232af..0793984800 100644
--- a/Programs/_freeze_importlib.c
+++ b/Programs/_freeze_importlib.c
@@ -77,6 +77,7 @@ main(int argc, char *argv[])
Py_NoUserSiteDirectory++;
Py_NoSiteFlag++;
Py_IgnoreEnvironmentFlag++;
+ Py_FrozenFlag++;
Py_SetProgramName(L"./_freeze_importlib");
/* Don't install importlib, since it could execute outdated bytecode. */