Mercurial > public > mercurial-scm > hg
comparison mercurial/linelog.py @ 38796:f956dc7217fc
linelog: fix import statements to pass the import checker on py3
Differential Revision: https://phab.mercurial-scm.org/D4050
author | Augie Fackler <augie@google.com> |
---|---|
date | Wed, 01 Aug 2018 23:08:18 -0400 |
parents | 422d661056be |
children | 57af5ee15b35 |
comparison
equal
deleted
inserted
replaced
38795:422d661056be | 38796:f956dc7217fc |
---|---|
21 from __future__ import absolute_import, print_function | 21 from __future__ import absolute_import, print_function |
22 | 22 |
23 import abc | 23 import abc |
24 import struct | 24 import struct |
25 | 25 |
26 from mercurial import ( | |
27 pycompat, | |
28 ) | |
29 from .thirdparty import ( | 26 from .thirdparty import ( |
30 attr, | 27 attr, |
28 ) | |
29 from . import ( | |
30 pycompat, | |
31 ) | 31 ) |
32 | 32 |
33 _llentry = struct.Struct('>II') | 33 _llentry = struct.Struct('>II') |
34 | 34 |
35 class LineLogError(Exception): | 35 class LineLogError(Exception): |