Show More
@@ -981,6 +981,9 b' class commitablectx(basectx):' | |||||
981 | def unknown(self): |
|
981 | def unknown(self): | |
982 | assert self._unknown is not None # must call status first |
|
982 | assert self._unknown is not None # must call status first | |
983 | return self._unknown |
|
983 | return self._unknown | |
|
984 | def ignored(self): | |||
|
985 | assert self._ignored is not None # must call status first | |||
|
986 | return self._ignored | |||
984 |
|
987 | |||
985 | class workingctx(commitablectx): |
|
988 | class workingctx(commitablectx): | |
986 | """A workingctx object makes access to data related to |
|
989 | """A workingctx object makes access to data related to | |
@@ -1008,9 +1011,6 b' class workingctx(commitablectx):' | |||||
1008 | p = p[:-1] |
|
1011 | p = p[:-1] | |
1009 | return [changectx(self._repo, x) for x in p] |
|
1012 | return [changectx(self._repo, x) for x in p] | |
1010 |
|
1013 | |||
1011 | def ignored(self): |
|
|||
1012 | assert self._ignored is not None # must call status first |
|
|||
1013 | return self._ignored |
|
|||
1014 | def clean(self): |
|
1014 | def clean(self): | |
1015 | assert self._clean is not None # must call status first |
|
1015 | assert self._clean is not None # must call status first | |
1016 | return self._clean |
|
1016 | return self._clean |
General Comments 0
You need to be logged in to leave comments.
Login now