mercurial/dirstate.py
changeset 13200 6f011cf52f9a
parent 13047 6c375e07d673
child 13234 0935ff767285
--- a/mercurial/dirstate.py	Mon Dec 06 16:56:06 2010 +0100
+++ b/mercurial/dirstate.py	Thu Dec 02 03:43:06 2010 +0100
@@ -230,7 +230,8 @@
             self._pl = p
 
     def invalidate(self):
-        for a in "_map _copymap _foldmap _branch _pl _dirs _ignore".split():
+        for a in ("_map", "_copymap", "_foldmap", "_branch", "_pl", "_dirs",
+                "_ignore"):
             if a in self.__dict__:
                 delattr(self, a)
         self._dirty = False