Show More
@@ -2045,7 +2045,7 class manifestrevlog: # (repository.ima | |||||
2045 | self._revlog.opener = value |
|
2045 | self._revlog.opener = value | |
2046 |
|
2046 | |||
2047 |
|
2047 | |||
2048 |
AnyManifestCtx = Union[' |
|
2048 | AnyManifestCtx = Union['manifestctx', 'TreeManifestCtx'] | |
2049 | # TODO: drop this in favor of repository.imanifestdict |
|
2049 | # TODO: drop this in favor of repository.imanifestdict | |
2050 | AnyManifestDict = Union[manifestdict, treemanifest] |
|
2050 | AnyManifestDict = Union[manifestdict, treemanifest] | |
2051 |
|
2051 | |||
@@ -2185,7 +2185,7 class memmanifestctx: # (repository.ima | |||||
2185 | ) |
|
2185 | ) | |
2186 |
|
2186 | |||
2187 |
|
2187 | |||
2188 | class ManifestCtx: |
|
2188 | class manifestctx: # (repository.imanifestrevisionstored) | |
2189 | """A class representing a single revision of a manifest, including its |
|
2189 | """A class representing a single revision of a manifest, including its | |
2190 | contents, its parent revs, and its linkrev. |
|
2190 | contents, its parent revs, and its linkrev. | |
2191 | """ |
|
2191 | """ | |
@@ -2345,14 +2345,6 class ManifestCtx: | |||||
2345 | return self.read().find(key) |
|
2345 | return self.read().find(key) | |
2346 |
|
2346 | |||
2347 |
|
2347 | |||
2348 | manifestctx = interfaceutil.implementer(repository.imanifestrevisionstored)( |
|
|||
2349 | ManifestCtx |
|
|||
2350 | ) |
|
|||
2351 |
|
||||
2352 | if typing.TYPE_CHECKING: |
|
|||
2353 | manifestctx = ManifestCtx |
|
|||
2354 |
|
||||
2355 |
|
||||
2356 | class MemTreeManifestCtx: |
|
2348 | class MemTreeManifestCtx: | |
2357 | _treemanifest: treemanifest |
|
2349 | _treemanifest: treemanifest | |
2358 |
|
2350 |
General Comments 0
You need to be logged in to leave comments.
Login now