diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2014-03-30 19:07:25 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2014-03-30 19:07:25 (GMT) |
commit | c00d39e96aff698a8777120f9537e261c06be0ef (patch) | |
tree | cda5f37bb98e783d7006ec064b24b8d8968247ff /Tools/freeze/makeconfig.py | |
parent | 3a4340325b153eab1f1bb1b91882d777fe6bcb21 (diff) | |
download | cpython-c00d39e96aff698a8777120f9537e261c06be0ef.zip cpython-c00d39e96aff698a8777120f9537e261c06be0ef.tar.gz cpython-c00d39e96aff698a8777120f9537e261c06be0ef.tar.bz2 |
Issue #16047: Fix module exception list and __file__ handling in freeze.
Patch by Meador Inge.
Diffstat (limited to 'Tools/freeze/makeconfig.py')
-rw-r--r-- | Tools/freeze/makeconfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/freeze/makeconfig.py b/Tools/freeze/makeconfig.py index 018992c..fabaace 100644 --- a/Tools/freeze/makeconfig.py +++ b/Tools/freeze/makeconfig.py @@ -3,7 +3,7 @@ import sys # Write the config.c file -never = ['marshal', 'imp', '_ast', '__main__', 'builtins', +never = ['marshal', '_imp', '_ast', '__main__', 'builtins', 'sys', 'gc', '_warnings'] def makeconfig(infp, outfp, modules, with_ifdef=0): |