[pypy-svn] rev 1120 - pypy/branch/builtinrefactor/pypy/module

hpk at codespeak.net hpk at codespeak.net
Thu Jul 10 15:33:09 CEST 2003


Author: hpk
Date: Thu Jul 10 15:33:09 2003
New Revision: 1120

Modified:
   pypy/branch/builtinrefactor/pypy/module/builtin.py
Log:
fixed a typo



Modified: pypy/branch/builtinrefactor/pypy/module/builtin.py
==============================================================================
--- pypy/branch/builtinrefactor/pypy/module/builtin.py	(original)
+++ pypy/branch/builtinrefactor/pypy/module/builtin.py	Thu Jul 10 15:33:09 2003
@@ -28,7 +28,7 @@
     globals = appmethod(globals)
 
     def locals(self):
-        return self._actframe().w_globals
+        return self._actframe().w_locals
     locals = appmethod(locals)
 
 


More information about the Pypy-commit mailing list