[pypy-svn] r15190 - pypy/dist/pypy/module/__builtin__
rxe at codespeak.net
rxe at codespeak.net
Wed Jul 27 15:00:31 CEST 2005
Author: rxe
Date: Wed Jul 27 15:00:30 2005
New Revision: 15190
Modified:
pypy/dist/pypy/module/__builtin__/importing.py
Log:
re - small namingglitch
Modified: pypy/dist/pypy/module/__builtin__/importing.py
==============================================================================
--- pypy/dist/pypy/module/__builtin__/importing.py (original)
+++ pypy/dist/pypy/module/__builtin__/importing.py Wed Jul 27 15:00:30 2005
@@ -463,6 +463,6 @@
_w_long(osfile, mtime)
w_marshal = space.getbuiltinmodule('marshal')
w_M = space.getattr(w_marshal, space.wrap('_Marshaller'))
- w_unmarshaller = space.call_function(w_M, space.wrap(fd))
- w_res = space.call_method(w_unmarshaller, 'dump', space.wrap(co))
+ w_marshaller = space.call_function(w_M, space.wrap(fd))
+ w_res = space.call_method(w_marshaller, 'dump', space.wrap(co))
os.close(fd)
More information about the Pypy-commit
mailing list