summaryrefslogtreecommitdiffstats
path: root/Programs
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2023-09-08 09:34:40 (GMT)
committerGitHub <noreply@github.com>2023-09-08 09:34:40 (GMT)
commit15d4c9fabce67b8a1b5bd9dec9612014ec18291a (patch)
tree1c728c98663c224ec93022b0bdd0dd685c9fdf38 /Programs
parent00cf626cd41f806062c22a913b647b4efa84c476 (diff)
downloadcpython-15d4c9fabce67b8a1b5bd9dec9612014ec18291a.zip
cpython-15d4c9fabce67b8a1b5bd9dec9612014ec18291a.tar.gz
cpython-15d4c9fabce67b8a1b5bd9dec9612014ec18291a.tar.bz2
GH-108716: Turn off deep-freezing of code objects. (GH-108722)
Diffstat (limited to 'Programs')
-rw-r--r--Programs/_bootstrap_python.c2
-rw-r--r--Programs/_freeze_module.c2
2 files changed, 0 insertions, 4 deletions
diff --git a/Programs/_bootstrap_python.c b/Programs/_bootstrap_python.c
index 6c388fc..34f7919 100644
--- a/Programs/_bootstrap_python.c
+++ b/Programs/_bootstrap_python.c
@@ -15,8 +15,6 @@
#include "Python/frozen_modules/zipimport.h"
/* End includes */
-uint32_t _Py_next_func_version = 1;
-
/* Empty initializer for deepfrozen modules */
int _Py_Deepfreeze_Init(void)
{
diff --git a/Programs/_freeze_module.c b/Programs/_freeze_module.c
index f6c46fa..3de6c68 100644
--- a/Programs/_freeze_module.c
+++ b/Programs/_freeze_module.c
@@ -22,8 +22,6 @@
# include <unistd.h>
#endif
-uint32_t _Py_next_func_version = 1;
-
/* Empty initializer for deepfrozen modules */
int _Py_Deepfreeze_Init(void)
{