diff options
author | Victor Stinner <vstinner@python.org> | 2021-03-10 10:14:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-10 10:14:07 (GMT) |
commit | 307745aa42196ad3fd97fee4a1ae6496bb895596 (patch) | |
tree | ac50f9198da22b1400df4815b6a875fd3364bb70 /Makefile.pre.in | |
parent | b4f9089d4aa787c5b74134c98e5f0f11d9e63095 (diff) | |
download | cpython-307745aa42196ad3fd97fee4a1ae6496bb895596.zip cpython-307745aa42196ad3fd97fee4a1ae6496bb895596.tar.gz cpython-307745aa42196ad3fd97fee4a1ae6496bb895596.tar.bz2 |
bpo-43445: Add frozen modules to sys.stdlib_module_names (GH-24798)
Add frozen modules to sys.stdlib_module_names. For example, add
"_frozen_importlib" and "_frozen_importlib_external" names.
Add "list_frozen" command to Programs/_testembed.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 5d230ec..50bd75c 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -913,7 +913,7 @@ regen-keyword: $(UPDATE_FILE) $(srcdir)/Lib/keyword.py $(srcdir)/Lib/keyword.py.new .PHONY: regen-stdlib-module-names -regen-stdlib-module-names: build_all +regen-stdlib-module-names: build_all Programs/_testembed # Regenerate Python/stdlib_module_names.h # using Tools/scripts/generate_stdlib_module_names.py $(RUNSHARED) ./$(BUILDPYTHON) \ |