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
|
from __future__ import generator_stop
from utils import check_on_input
INT_LONG_ISINSTANCE = (
"""\
isinstance(1, (int, long))
""",
"""\
from __future__ import absolute_import
import six
isinstance(1, six.integer_types)
""",
)
LONG_INT_ISINSTANCE = (
"""\
isinstance(1, (long, int))
""",
"""\
from __future__ import absolute_import
import six
isinstance(1, six.integer_types)
""",
)
def test_int_long_isinstance():
check_on_input(*INT_LONG_ISINSTANCE)
def test_long_int_isinstance():
check_on_input(*LONG_INT_ISINSTANCE)
|