comparison contrib/python-zstandard/zstandard/cffi.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 5e84a96d865b
children 493034cc3265
comparison
equal deleted inserted replaced
48874:af0b21d5a930 48875:6000f5b25c9b
4 # This software may be modified and distributed under the terms 4 # This software may be modified and distributed under the terms
5 # of the BSD license. See the LICENSE file for details. 5 # of the BSD license. See the LICENSE file for details.
6 6
7 """Python interface to the Zstandard (zstd) compression library.""" 7 """Python interface to the Zstandard (zstd) compression library."""
8 8
9 from __future__ import absolute_import, unicode_literals
10 9
11 # This should match what the C extension exports. 10 # This should match what the C extension exports.
12 __all__ = [ 11 __all__ = [
13 #'BufferSegment', 12 #'BufferSegment',
14 #'BufferSegments', 13 #'BufferSegments',