equal
deleted
inserted
replaced
94 ) |
94 ) |
95 |
95 |
96 |
96 |
97 # TODO: an interface for the changelog type? |
97 # TODO: an interface for the changelog type? |
98 class changelog(baselog): |
98 class changelog(baselog): |
|
99 # TODO: this appears to be an enumerated type, and should probably |
|
100 # be part of the public changelog interface |
|
101 _copiesstorage = b'extra' |
|
102 |
99 def __contains__(self, rev): |
103 def __contains__(self, rev): |
100 try: |
104 try: |
101 self.node(rev) |
105 self.node(rev) |
102 return True |
106 return True |
103 except error.LookupError: |
107 except error.LookupError: |