Mercurial > public > mercurial-scm > hg
comparison mercurial/revlogutils/sidedata.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 | 8bd769b5c941 |
children | f4733654f144 |
comparison
equal
deleted
inserted
replaced
48874:af0b21d5a930 | 48875:6000f5b25c9b |
---|---|
28 | 28 |
29 This is a simple and effective format. It should be enough to experiment with | 29 This is a simple and effective format. It should be enough to experiment with |
30 the concept. | 30 the concept. |
31 """ | 31 """ |
32 | 32 |
33 from __future__ import absolute_import | |
34 | 33 |
35 import collections | 34 import collections |
36 import struct | 35 import struct |
37 | 36 |
38 from .. import error, requirements as requirementsmod | 37 from .. import error, requirements as requirementsmod |