1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
"""
This tests whether explicit imports like
from future.builtins import str, range
etc. all work as expected on both Python 2 and Python 3.
"""
from __future__ import absolute_import, print_function, unicode_literals
import copy
from future import utils
from future.tests.base import unittest
class TestExplicitImports(unittest.TestCase):
def test_py3_builtin_imports(self):
from future.builtins import (input,
filter,
map,
range,
round,
super,
str,
zip)
def test_py2k_disabled_builtins(self):
"""
On Py2 these should import.
"""
if not utils.PY3:
from future.builtins.disabled import (apply,
cmp,
coerce,
execfile,
file,
long,
raw_input,
reduce,
reload,
unicode,
xrange,
StandardError)
if __name__ == '__main__':
unittest.main()
|