Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a88b2f4 + 17cfc86 commit 1cce732Copy full SHA for 1cce732
2 files changed
Misc/NEWS
@@ -211,6 +211,9 @@ Windows
211
Build
212
-----
213
214
+- Issue #27713: Surpress spurious build warnings when updating importlib's
215
+ bootstrap files. Patch by Xiang Zhang
216
+
217
- Issue #25825: Correct the references to Modules/python.exp, which is
218
required on AIX. The references were accidentally changed in 3.5.0a1.
219
Programs/_freeze_importlib.c
@@ -77,6 +77,7 @@ main(int argc, char *argv[])
77
Py_NoUserSiteDirectory++;
78
Py_NoSiteFlag++;
79
Py_IgnoreEnvironmentFlag++;
80
+ Py_FrozenFlag++;
81
82
Py_SetProgramName(L"./_freeze_importlib");
83
/* Don't install importlib, since it could execute outdated bytecode. */
0 commit comments