Skip to content

Instantly share code, notes, and snippets.

@mikedeboer
Created May 22, 2019 10:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikedeboer/6d80b6d12d7160e8a4a69592dcbc2403 to your computer and use it in GitHub Desktop.
Save mikedeboer/6d80b6d12d7160e8a4a69592dcbc2403 to your computer and use it in GitHub Desktop.
builtins override
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