[pypy-svn] r76691 - pypy/branch/better-map-instances/pypy/objspace/std

cfbolz at codespeak.net cfbolz at codespeak.net
Fri Aug 20 23:29:24 CEST 2010


Author: cfbolz
Date: Fri Aug 20 23:29:22 2010
New Revision: 76691

Modified:
   pypy/branch/better-map-instances/pypy/objspace/std/dictmultiobject.py
Log:
cleanup whitespace


Modified: pypy/branch/better-map-instances/pypy/objspace/std/dictmultiobject.py
==============================================================================
--- pypy/branch/better-map-instances/pypy/objspace/std/dictmultiobject.py	(original)
+++ pypy/branch/better-map-instances/pypy/objspace/std/dictmultiobject.py	Fri Aug 20 23:29:22 2010
@@ -102,17 +102,17 @@
         else:
             return None
 
-    # _________________________________________________________________ 
+    # _________________________________________________________________
     # implementation methods
     def impl_getitem(self, w_key):
         #return w_value or None
         raise NotImplementedError("abstract base class")
 
-    def impl_getitem_str(self, w_key):
+    def impl_getitem_str(self, key):
         #return w_value or None
         raise NotImplementedError("abstract base class")
 
-    def impl_setitem_str(self,  key, w_value, shadows_type=True):
+    def impl_setitem_str(self, key, w_value, shadows_type=True):
         raise NotImplementedError("abstract base class")
 
     def impl_setitem(self,  w_key, w_value):
@@ -120,7 +120,7 @@
 
     def impl_delitem(self, w_key):
         raise NotImplementedError("abstract base class")
- 
+
     def impl_length(self):
         raise NotImplementedError("abstract base class")
 



More information about the Pypy-commit mailing list