mercurial/context.py
changeset 24227 8ec2df32bd39
parent 24213 e0c1328df872
child 24300 a07314472a80
--- a/mercurial/context.py	Fri Mar 06 21:29:47 2015 -0500
+++ b/mercurial/context.py	Mon Nov 17 00:00:25 2014 -0500
@@ -66,8 +66,7 @@
         return self.filectx(key)
 
     def __iter__(self):
-        for f in sorted(self._manifest):
-            yield f
+        return iter(self._manifest)
 
     def _manifestmatches(self, match, s):
         """generate a new manifest filtered by the match argument