[pypy-commit] pypy default: fix indentation (how did it happen?)

alex_gaynor noreply at buildbot.pypy.org
Thu Oct 6 22:12:25 CEST 2011


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: 
Changeset: r47844:1917da0b25f3
Date: 2011-10-06 16:12 -0400
http://bitbucket.org/pypy/pypy/changeset/1917da0b25f3/

Log:	fix indentation (how did it happen?)

diff --git a/pypy/objspace/std/celldict.py b/pypy/objspace/std/celldict.py
--- a/pypy/objspace/std/celldict.py
+++ b/pypy/objspace/std/celldict.py
@@ -37,10 +37,10 @@
         self.version = VersionTag()
 
     def get_empty_storage(self):
-       return self.erase({})
+        return self.erase({})
 
     def mutated(self):
-       self.version = VersionTag()
+        self.version = VersionTag()
 
     def getdictvalue_no_unwrapping(self, w_dict, key):
         # NB: it's important to promote self here, so that self.version is a


More information about the pypy-commit mailing list