comparison mercurial/revlog.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 6ea9ead59cf8
children f254fc73d956
comparison
equal deleted inserted replaced
48874:af0b21d5a930 48875:6000f5b25c9b
10 10
11 This provides efficient delta storage with O(1) retrieve and append 11 This provides efficient delta storage with O(1) retrieve and append
12 and O(changes) merge between branches. 12 and O(changes) merge between branches.
13 """ 13 """
14 14
15 from __future__ import absolute_import
16 15
17 import binascii 16 import binascii
18 import collections 17 import collections
19 import contextlib 18 import contextlib
20 import errno 19 import errno