7 lines
111 B
Python
7 lines
111 B
Python
from __future__ import absolute_import
|
|
from future.utils import PY3
|
|
|
|
if not PY3:
|
|
__future_module__ = True
|
|
|