From 365c3e8b73eab825a8ecd0cf8046e1a0824ccd45 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Mon, 2 Sep 2013 12:06:32 +0200 Subject: Replaced "not PY3" by "PY2", new in six 1.4.0. --- tests/test_utils/doctest_output.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_utils') diff --git a/tests/test_utils/doctest_output.py b/tests/test_utils/doctest_output.py index 724364428a..0d1e94d037 100644 --- a/tests/test_utils/doctest_output.py +++ b/tests/test_utils/doctest_output.py @@ -59,7 +59,7 @@ __test__ = {"API_TEST": r""" """} -if not six.PY3: +if six.PY2: __test__["API_TEST"] += """ >>> def produce_long(): ... return 42L -- cgit v1.3