diff -r bfddc3d678ae -r 014bd2a555c8 contrib/perf.py --- a/contrib/perf.py Thu Oct 05 11:34:41 2017 -0700 +++ b/contrib/perf.py Thu Oct 05 11:34:41 2017 -0700 @@ -519,7 +519,7 @@ 'a' in dirstate def d(): dirstate.dirs() - del dirstate._dirs + del dirstate._map.dirs timer(d) fm.end() @@ -538,8 +538,8 @@ timer, fm = gettimer(ui, opts) "a" in repo.dirstate def d(): - "a" in repo.dirstate._dirs - del repo.dirstate._dirs + "a" in repo.dirstate._map.dirs + del repo.dirstate._map.dirs timer(d) fm.end() @@ -562,7 +562,7 @@ def d(): dirstate._dirfoldmap.get('a') del dirstate._dirfoldmap - del dirstate._dirs + del dirstate._map.dirs timer(d) fm.end()