mirror of
https://github.com/python/cpython.git
synced 2025-11-01 10:45:30 +00:00
Issue #16047: Fix module exception list and __file__ handling in freeze.
Patch by Meador Inge.
This commit is contained in:
parent
3a4340325b
commit
c00d39e96a
4 changed files with 16 additions and 4 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue