]> granicus.if.org Git - python/commitdiff
Issue #16047: Fix module exception list and __file__ handling in freeze.
authorMartin v. Löwis <martin@v.loewis.de>
Sun, 30 Mar 2014 19:07:25 +0000 (21:07 +0200)
committerMartin v. Löwis <martin@v.loewis.de>
Sun, 30 Mar 2014 19:07:25 +0000 (21:07 +0200)
Patch by Meador Inge.

Lib/site.py
Misc/NEWS
Tools/freeze/freeze.py
Tools/freeze/makeconfig.py

index 4fb1058a1e882ea8d7d3ca399f8c8042070e05cc..ded653948fd60609e4e88408ed5346053f4ff633 100644 (file)
@@ -364,12 +364,17 @@ def setcopyright():
         builtins.credits = _sitebuiltins._Printer("credits", """\
     Thanks to CWI, CNRI, BeOpen.com, Zope Corporation and a cast of thousands
     for supporting Python development.  See www.python.org for more information.""")
-    here = os.path.dirname(os.__file__)
+    files, dirs = [], []
+    # Not all modules are required to have a __file__ attribute.  See
+    # PEP 420 for more details.
+    if hasattr(os, '__file__'):
+        here = os.path.dirname(os.__file__)
+        files.extend(["LICENSE.txt", "LICENSE"])
+        dirs.extend([os.path.join(here, os.pardir), here, os.curdir])
     builtins.license = _sitebuiltins._Printer(
         "license",
         "See http://www.python.org/download/releases/%.5s/license" % sys.version,
-        ["LICENSE.txt", "LICENSE"],
-        [os.path.join(here, os.pardir), here, os.curdir])
+        files, dirs)
 
 
 def sethelper():
index e263aacb8aab11ccbd2e80201218201ba961b8fa..8d0a89b8b4dacd31ba0a9102fb5d1cdddff421b1 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -137,6 +137,9 @@ Tests
 Tools/Demos
 -----------
 
+- Issue #16047: Fix module exception list and __file__ handling in freeze.
+  Patch by Meador Inge.
+
 - Issue #11824: Consider ABI tags in freeze. Patch by Meador Inge.
 
 - Issue #20535: PYTHONWARNING no longer affects the run_tests.py script.
index d0e3c3fb56e6a31c9294a9b719e29263ae29be15..e0c6c2c580a7854c97a3edad815b4ab44fd567fb 100755 (executable)
@@ -365,6 +365,10 @@ def main():
         else:
             mf.load_file(mod)
 
+    # Alias "importlib._bootstrap" to "_frozen_importlib" so that the
+    # import machinery can bootstrap.
+    mf.modules["_frozen_importlib"] = mf.modules["importlib._bootstrap"]
+
     # Add the main script as either __main__, or the actual module name.
     if python_entry_is_main:
         mf.run_script(scriptfile)
index 018992c75347b500415a31713b0cdf45c7cbc750..fabaace07a83e0126009a3c1d1482ddd47ac9417 100644 (file)
@@ -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):