mirror of
https://github.com/python/cpython.git
synced 2025-11-03 11:23:31 +00:00
[ 684677 ] Allow freeze to exclude implicits
This commit is contained in:
parent
c49435c991
commit
e9e20a9838
1 changed files with 6 additions and 3 deletions
|
|
@ -130,9 +130,6 @@ def main():
|
||||||
|
|
||||||
fail_import = exclude[:]
|
fail_import = exclude[:]
|
||||||
|
|
||||||
# modules that are imported by the Python runtime
|
|
||||||
implicits = ["site", "exceptions"]
|
|
||||||
|
|
||||||
# output files
|
# output files
|
||||||
frozen_c = 'frozen.c'
|
frozen_c = 'frozen.c'
|
||||||
config_c = 'config.c'
|
config_c = 'config.c'
|
||||||
|
|
@ -202,6 +199,12 @@ def main():
|
||||||
f,r = a.split("=", 2)
|
f,r = a.split("=", 2)
|
||||||
replace_paths.append( (f,r) )
|
replace_paths.append( (f,r) )
|
||||||
|
|
||||||
|
# modules that are imported by the Python runtime
|
||||||
|
implicits = []
|
||||||
|
for module in ('site', 'exceptions',):
|
||||||
|
if module not in exclude:
|
||||||
|
implicits.append(module)
|
||||||
|
|
||||||
# default prefix and exec_prefix
|
# default prefix and exec_prefix
|
||||||
if not exec_prefix:
|
if not exec_prefix:
|
||||||
if prefix:
|
if prefix:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue