[pypy-commit] pypy py3k-osxfix: debug importlib

pjenvey pypy.commits at gmail.com
Mon May 23 15:13:37 EDT 2016


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k-osxfix
Changeset: r84635:3e497cc86688
Date: 2016-05-23 12:12 -0700
http://bitbucket.org/pypy/pypy/changeset/3e497cc86688/

Log:	debug importlib

diff --git a/pypy/module/_frozen_importlib/interp_import.py b/pypy/module/_frozen_importlib/interp_import.py
--- a/pypy/module/_frozen_importlib/interp_import.py
+++ b/pypy/module/_frozen_importlib/interp_import.py
@@ -7,7 +7,7 @@
             space.getbuiltinmodule('_frozen_importlib').getdictvalue(
                 space, '__import__'), __args__)
     except OperationError as e:
-        e.remove_traceback_module_frames('<frozen importlib._bootstrap>')
+        #e.remove_traceback_module_frames('<frozen importlib._bootstrap>')
         raise
 import_with_frames_removed = interp2app(import_with_frames_removed,
                                         app_name='__import__')


More information about the pypy-commit mailing list