changeset 4955:8b6efc8fc23c

dirstate: add doesn't need to call stat
author Matt Mackall <mpm@selenic.com>
date Sat, 21 Jul 2007 16:02:09 -0500
parents fd96bc61a18b
children 312c845edef5
files mercurial/dirstate.py
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/dirstate.py
+++ b/mercurial/dirstate.py
@@ -217,8 +217,7 @@ class dirstate(object):
         'mark a file added'
         self._dirty = True
         self._incpathcheck(f)
-        s = os.lstat(self._join(f))
-        self._map[f] = ('a', s.st_mode, s.st_size, s.st_mtime)
+        self._map[f] = ('a', 0, -1, -1)
         if f in self._copymap:
             del self._copymap[f]