equal
deleted
inserted
replaced
1 from __future__ import absolute_import |
1 from __future__ import absolute_import |
2 |
|
3 import pygit2 |
|
4 |
2 |
5 from mercurial.i18n import _ |
3 from mercurial.i18n import _ |
6 |
4 |
7 from mercurial import ( |
5 from mercurial import ( |
8 ancestor, |
6 ancestor, |
22 from . import ( |
20 from . import ( |
23 gitutil, |
21 gitutil, |
24 index, |
22 index, |
25 manifest as gitmanifest, |
23 manifest as gitmanifest, |
26 ) |
24 ) |
|
25 |
|
26 pygit2 = gitutil.get_pygit2() |
27 |
27 |
28 |
28 |
29 class baselog(object): # revlog.revlog): |
29 class baselog(object): # revlog.revlog): |
30 """Common implementations between changelog and manifestlog.""" |
30 """Common implementations between changelog and manifestlog.""" |
31 |
31 |