--- a/mercurial/dirstate.py Mon Oct 13 14:18:47 2014 -0700
+++ b/mercurial/dirstate.py Fri Oct 03 21:44:10 2014 -0700
@@ -809,8 +809,8 @@
def status(self, match, subrepos, ignored, clean, unknown):
'''Determine the status of the working copy relative to the
- dirstate and return a tuple of lists (unsure, modified, added,
- removed, deleted, unknown, ignored, clean), where:
+ dirstate and return a nested tuple of lists (unsure, (modified, added,
+ removed, deleted, unknown, ignored, clean)), where:
unsure:
files that might have been modified since the dirstate was
@@ -908,8 +908,8 @@
elif state == 'r':
radd(fn)
- return (lookup, modified, added, removed, deleted, unknown, ignored,
- clean)
+ return (lookup, (modified, added, removed, deleted, unknown, ignored,
+ clean))
def matches(self, match):
'''