[pypy-svn] r19119 - pypy/dist/pypy/tool

mwh at codespeak.net mwh at codespeak.net
Fri Oct 28 13:29:04 CEST 2005


Author: mwh
Date: Fri Oct 28 13:29:03 2005
New Revision: 19119

Modified:
   pypy/dist/pypy/tool/importfun.py
Log:
be somewhat more confident.


Modified: pypy/dist/pypy/tool/importfun.py
==============================================================================
--- pypy/dist/pypy/tool/importfun.py	(original)
+++ pypy/dist/pypy/tool/importfun.py	Fri Oct 28 13:29:03 2005
@@ -342,7 +342,7 @@
     try:
         code = compile(open(path, "U").read(), path, 'exec')
         process(r, code, r.toplevelscope, True)
-    except (ImportError, AssertionError, SyntaxError), e:
+    except (ImportError, SyntaxError), e:
         print "failed!", e
         #raise
     else:



More information about the Pypy-commit mailing list