Commit 9dd0e113 authored by Stefan Behnel's avatar Stefan Behnel

better error output from test case

parent 85a4643c
...@@ -37,8 +37,8 @@ def long_int_mix(): ...@@ -37,8 +37,8 @@ def long_int_mix():
""" """
>>> long_int_mix() == 1 + (2 * 3) // 2 >>> long_int_mix() == 1 + (2 * 3) // 2
True True
>>> if IS_PY3: type(long_int_mix()) is int >>> if IS_PY3: type(long_int_mix()) is int or type(long_int_mix())
... else: type(long_int_mix()) is long ... else: type(long_int_mix()) is long or type(long_int_mix())
True True
""" """
return 1L + (2 * 3L) // 2 return 1L + (2 * 3L) // 2
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment