Show More
@@ -12,6 +12,7 import match as matchmod | |||
|
12 | 12 | import os, errno, stat |
|
13 | 13 | import obsolete as obsmod |
|
14 | 14 | import repoview |
|
15 | import fileset | |
|
15 | 16 | |
|
16 | 17 | propertycache = util.propertycache |
|
17 | 18 | |
@@ -79,6 +80,9 class basectx(object): | |||
|
79 | 80 | def mutable(self): |
|
80 | 81 | return self.phase() > phases.public |
|
81 | 82 | |
|
83 | def getfileset(self, expr): | |
|
84 | return fileset.getfileset(self, expr) | |
|
85 | ||
|
82 | 86 | def obsolete(self): |
|
83 | 87 | """True if the changeset is obsolete""" |
|
84 | 88 | return self.rev() in obsmod.getrevs(self._repo, 'obsolete') |
General Comments 0
You need to be logged in to leave comments.
Login now