[pypy-svn] r44953 - pypy/dist/pypy/lang/scheme

antocuni at codespeak.net antocuni at codespeak.net
Thu Jul 12 14:18:36 CEST 2007


Author: antocuni
Date: Thu Jul 12 14:18:35 2007
New Revision: 44953

Modified:
   pypy/dist/pypy/lang/scheme/object.py
Log:
(antocuni, jlg)

dict() is not rpython



Modified: pypy/dist/pypy/lang/scheme/object.py
==============================================================================
--- pypy/dist/pypy/lang/scheme/object.py	(original)
+++ pypy/dist/pypy/lang/scheme/object.py	Thu Jul 12 14:18:35 2007
@@ -424,7 +424,7 @@
     """
     def __init__(self, globalscope=None, scope=None, closure=False):
         if globalscope is None:
-            self.globalscope = dict(OPERATION_MAP)
+            self.globalscope = OPERATION_MAP.copy()
         else:
             self.globalscope = globalscope
 



More information about the Pypy-commit mailing list