comparison mercurial/linelog.py @ 48875:6000f5b25c9b

py2: remove simple from __future__ statements These were needed for Python 2 support. Now that our linter no longer mandates these, we can start deleting them. Differential Revision: https://phab.mercurial-scm.org/D12254
author Gregory Szorc <gregory.szorc@gmail.com>
date Thu, 03 Mar 2022 17:34:00 +0100
parents c443b9ba6f63
children 642e31cb55f0
comparison
equal deleted inserted replaced
48874:af0b21d5a930 48875:6000f5b25c9b
16 about lines, including the revision that introduced them and the line 16 about lines, including the revision that introduced them and the line
17 number in the file at the introducing revision. When an insertion or 17 number in the file at the introducing revision. When an insertion or
18 deletion is performed on the file, a jump instruction is used to patch 18 deletion is performed on the file, a jump instruction is used to patch
19 in a new body of annotate information. 19 in a new body of annotate information.
20 """ 20 """
21 from __future__ import absolute_import, print_function
22 21
23 import abc 22 import abc
24 import struct 23 import struct
25 24
26 from .thirdparty import attr 25 from .thirdparty import attr