Commit d0593323 authored by Stefan Behnel's avatar Stefan Behnel

fix doctest in Py3

parent 6a6517cb
......@@ -452,7 +452,7 @@ def const_in_binop(v):
>>> const_in_binop(1 << 32 - 1)
0
"""
if v < 0 or v >= (1L << 32):
if v < 0 or v >= (1 << 32):
return 1
else:
return 0
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