tests/test-parseindex2.py.out
author |
FUJIWARA Katsunori <foozy@lares.dti.ne.jp> |
|
Wed, 31 Dec 2014 17:55:43 +0900 |
changeset 23712 |
bfce25d25c96 |
parent 7110 |
75fdc39b6172
|
permissions |
-rw-r--r-- |
context: override _dirstatestatus in workingcommitctx for correct matching
Before this patch, the result of "status()" on "workingcommitctx" may
incorrectly contain files other than ones to be committed, because
"workingctx._dirstatestatus()" returns the result of
"dirstate.status()" directly.
For correct matching, this patch overrides "_dirstatestatus" in
"workingcommitctx" and makes it return matched files only in
"self._status".
This patch uses empty list for "deleted", "unknown" and "ignored" of
status, because status between "changectx"s also makes them empty.