summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2022-06-23 16:31:39 (GMT)
committerGitHub <noreply@github.com>2022-06-23 16:31:39 (GMT)
commit4e796f56465f7264ddba63c8396d2649e098b617 (patch)
treeb9a18eb9070c958e73c19be51c9c6b605b5c9a26
parent2fc83ac3afa161578200dbf8d823a20e0801c0c0 (diff)
downloadcpython-4e796f56465f7264ddba63c8396d2649e098b617.zip
cpython-4e796f56465f7264ddba63c8396d2649e098b617.tar.gz
cpython-4e796f56465f7264ddba63c8396d2649e098b617.tar.bz2
gh-93771: Clarify how deepfreeze.py is run (#94150)
-rw-r--r--Tools/scripts/deepfreeze.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/Tools/scripts/deepfreeze.py b/Tools/scripts/deepfreeze.py
index b2d091a..a46cf6c 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