[pypy-svn] r29852 - pypy/branch/objspace-config-cleanup/pypy/objspace/std

cfbolz at codespeak.net cfbolz at codespeak.net
Sat Jul 8 18:26:28 CEST 2006


Author: cfbolz
Date: Sat Jul  8 18:26:26 2006
New Revision: 29852

Modified:
   pypy/branch/objspace-config-cleanup/pypy/objspace/std/objspace.py
Log:
this was supposed to be indented


Modified: pypy/branch/objspace-config-cleanup/pypy/objspace/std/objspace.py
==============================================================================
--- pypy/branch/objspace-config-cleanup/pypy/objspace/std/objspace.py	(original)
+++ pypy/branch/objspace-config-cleanup/pypy/objspace/std/objspace.py	Sat Jul  8 18:26:26 2006
@@ -463,9 +463,9 @@
         if type(w_obj) is self.DictObjectCls:
             if not self.config.objspace.std.withstrdict:
                 return w_obj.content.get(w_key, None)
-        else:
-            #XXX fix this here!
-            pass
+            else:
+                # XXX fix this here
+                pass
         return ObjSpace.finditem(self, w_obj, w_key)
 
     def set_str_keyed_item(self, w_obj, w_key, w_value):



More information about the Pypy-commit mailing list