diff options
author | Christian Heimes <christian@python.org> | 2021-12-10 18:09:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-10 18:09:09 (GMT) |
commit | 16638a4bdb802ae52d386a39d2dbef14de3fbc92 (patch) | |
tree | 2e1182e7d23fc5c59327fc9b4cd938fd491b49b2 /Makefile.pre.in | |
parent | 3f398a77d37b5dfd51dabbc362d482a482fa885a (diff) | |
download | cpython-16638a4bdb802ae52d386a39d2dbef14de3fbc92.zip cpython-16638a4bdb802ae52d386a39d2dbef14de3fbc92.tar.gz cpython-16638a4bdb802ae52d386a39d2dbef14de3fbc92.tar.bz2 |
bpo-45654: No need to freeze types (GH-30028)
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 57928ee..a182786 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -490,7 +490,6 @@ DEEPFREEZE_OBJS = \ Python/deepfreeze/os.o \ Python/deepfreeze/site.o \ Python/deepfreeze/stat.o \ - Python/deepfreeze/types.o \ Python/deepfreeze/importlib.util.o \ Python/deepfreeze/importlib.machinery.o \ Python/deepfreeze/runpy.o \ @@ -1014,9 +1013,6 @@ Python/deepfreeze/site.c: Python/frozen_modules/site.h $(DEEPFREEZE_DEPS) Python/deepfreeze/stat.c: Python/frozen_modules/stat.h $(DEEPFREEZE_DEPS) $(PYTHON_FOR_FREEZE) $(srcdir)/Tools/scripts/deepfreeze.py Python/frozen_modules/stat.h -m stat -o Python/deepfreeze/stat.c -Python/deepfreeze/types.c: Python/frozen_modules/types.h $(DEEPFREEZE_DEPS) - $(PYTHON_FOR_FREEZE) $(srcdir)/Tools/scripts/deepfreeze.py Python/frozen_modules/types.h -m types -o Python/deepfreeze/types.c - Python/deepfreeze/importlib.util.c: Python/frozen_modules/importlib.util.h $(DEEPFREEZE_DEPS) $(PYTHON_FOR_FREEZE) $(srcdir)/Tools/scripts/deepfreeze.py Python/frozen_modules/importlib.util.h -m importlib.util -o Python/deepfreeze/importlib.util.c @@ -1065,7 +1061,6 @@ FROZEN_FILES_IN = \ Lib/os.py \ Lib/site.py \ Lib/stat.py \ - Lib/types.py \ Lib/importlib/util.py \ Lib/importlib/machinery.py \ Lib/runpy.py \ @@ -1091,7 +1086,6 @@ FROZEN_FILES_OUT = \ Python/frozen_modules/os.h \ Python/frozen_modules/site.h \ Python/frozen_modules/stat.h \ - Python/frozen_modules/types.h \ Python/frozen_modules/importlib.util.h \ Python/frozen_modules/importlib.machinery.h \ Python/frozen_modules/runpy.h \ @@ -1154,9 +1148,6 @@ Python/frozen_modules/site.h: $(FREEZE_MODULE) Lib/site.py Python/frozen_modules/stat.h: $(FREEZE_MODULE) Lib/stat.py $(FREEZE_MODULE) stat $(srcdir)/Lib/stat.py Python/frozen_modules/stat.h -Python/frozen_modules/types.h: $(FREEZE_MODULE) Lib/types.py - $(FREEZE_MODULE) types $(srcdir)/Lib/types.py Python/frozen_modules/types.h - Python/frozen_modules/importlib.util.h: $(FREEZE_MODULE) Lib/importlib/util.py $(FREEZE_MODULE) importlib.util $(srcdir)/Lib/importlib/util.py Python/frozen_modules/importlib.util.h |