mercurial/tags.py
branchstable
changeset 26945 8a256cee72c8
parent 25982 b2f3f185e458
child 29038 a9dd92c48a1c
--- a/mercurial/tags.py	Fri Nov 13 02:36:30 2015 +0900
+++ b/mercurial/tags.py	Thu Nov 12 13:16:04 2015 -0800
@@ -221,9 +221,13 @@
     '''
     filetags, nodelines = _readtaghist(ui, repo, lines, fn, recode=recode,
                                        calcnodelines=calcnodelines)
+    # util.sortdict().__setitem__ is much slower at replacing then inserting
+    # new entries. The difference can matter if there are thousands of tags.
+    # Create a new sortdict to avoid the performance penalty.
+    newtags = util.sortdict()
     for tag, taghist in filetags.items():
-        filetags[tag] = (taghist[-1], taghist[:-1])
-    return filetags
+        newtags[tag] = (taghist[-1], taghist[:-1])
+    return newtags
 
 def _updatetags(filetags, tagtype, alltags, tagtypes):
     '''Incorporate the tag info read from one file into the two