[pypy-svn] r38639 - pypy/dist/pypy/module/__builtin__

hpk at codespeak.net hpk at codespeak.net
Mon Feb 12 21:02:11 CET 2007


Author: hpk
Date: Mon Feb 12 21:02:09 2007
New Revision: 38639

Modified:
   pypy/dist/pypy/module/__builtin__/importing.py
Log:
fix self -> space


Modified: pypy/dist/pypy/module/__builtin__/importing.py
==============================================================================
--- pypy/dist/pypy/module/__builtin__/importing.py	(original)
+++ pypy/dist/pypy/module/__builtin__/importing.py	Mon Feb 12 21:02:09 2007
@@ -470,7 +470,7 @@
         w_str = space.call_method(w_marshal, 'dumps', space.wrap(co))
         strbuf = space.str_w(w_str)
     except OperationError, e:
-        if e.async(self):
+        if e.async(space):
             raise
         #print "Problem while marshalling %s, skipping" % cpathname
         return



More information about the Pypy-commit mailing list