You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
530 B
27 lines
530 B
4 years ago
|
"""
|
||
|
future.backports package
|
||
|
"""
|
||
|
|
||
|
from __future__ import absolute_import
|
||
|
|
||
|
import sys
|
||
|
|
||
|
__future_module__ = True
|
||
|
from future.standard_library import import_top_level_modules
|
||
|
|
||
|
|
||
|
if sys.version_info[0] == 3:
|
||
|
import_top_level_modules()
|
||
|
|
||
|
|
||
|
from .misc import (ceil,
|
||
|
OrderedDict,
|
||
|
Counter,
|
||
|
ChainMap,
|
||
|
check_output,
|
||
|
count,
|
||
|
recursive_repr,
|
||
|
_count_elements,
|
||
|
cmp_to_key
|
||
|
)
|