Created
May 22, 2019 10:38
-
-
Save mikedeboer/6d80b6d12d7160e8a4a69592dcbc2403 to your computer and use it in GitHub Desktop.
builtins override
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import absolute_import | |
import sys | |
__future_module__ = True | |
if sys.version_info[0] < 3: | |
from __builtin__ import * | |
# Overwrite any old definitions with the equivalent future.builtins ones: | |
from future.builtins import * | |
else: | |
raise ImportError('This package should not be accessible on Python 3. ' | |
'Either you are trying to run from the python-future src folder ' | |
'or your installation of python-future is corrupted.') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment