[Python-checkins] gh-93771: Clarify how deepfreeze.py is run (GH-94150)

miss-islington webhook-mailer at python.org
Thu Jun 23 12:57:37 EDT 2022


https://github.com/python/cpython/commit/ee82f0f31454cef1e73bd95e1814faabd91b0810
commit: ee82f0f31454cef1e73bd95e1814faabd91b0810
branch: 3.11
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-06-23T09:57:29-07:00
summary:

gh-93771: Clarify how deepfreeze.py is run (GH-94150)

(cherry picked from commit 4e796f56465f7264ddba63c8396d2649e098b617)

Co-authored-by: Guido van Rossum <guido at python.org>

files:
M Tools/scripts/deepfreeze.py

diff --git a/Tools/scripts/deepfreeze.py b/Tools/scripts/deepfreeze.py
index 43a7a98fcc503..5aca79a722e11 100644
--- a/Tools/scripts/deepfreeze.py
+++ b/Tools/scripts/deepfreeze.py
@@ -1,7 +1,9 @@
 """Deep freeze
 
-The script is executed by _bootstrap_python interpreter. Shared library
-extension modules are not available.
+The script may be executed by _bootstrap_python interpreter.
+Shared library extension modules are not available in that case.
+On Windows, and in cross-compilation cases, it is executed
+by Python 3.10, and 3.11 features are not available.
 """
 import argparse
 import ast



More information about the Python-checkins mailing list