From d8958408f0f9388ab8abad5a2cc242a4a4777325 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 22 Jun 2022 18:31:06 -0700 Subject: [PATCH 1/2] Clarify how deepfreeze.py is run --- Tools/scripts/deepfreeze.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Tools/scripts/deepfreeze.py b/Tools/scripts/deepfreeze.py index b2d091aca1f6cc..6365884976f70e 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 avaiable. """ import argparse import ast From 3a77a8ffb63a008a1d7d719edb1e0874b4fc4d3a Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 23 Jun 2022 08:44:58 -0700 Subject: [PATCH 2/2] Fix typo Co-authored-by: Dong-hee Na --- Tools/scripts/deepfreeze.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/scripts/deepfreeze.py b/Tools/scripts/deepfreeze.py index 6365884976f70e..a46cf6c01647f2 100644 --- a/Tools/scripts/deepfreeze.py +++ b/Tools/scripts/deepfreeze.py @@ -3,7 +3,7 @@ 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 avaiable. +by Python 3.10, and 3.11 features are not available. """ import argparse import ast