Commit 297996b7 authored by Collin Winter's avatar Collin Winter

Change test_support.have_unicode to use True/False instead of 1/0.

parent bec754c2
......@@ -133,9 +133,9 @@ def fcmp(x, y): # fuzzy comparison function
try:
unicode
have_unicode = 1
have_unicode = True
except NameError:
have_unicode = 0
have_unicode = False
is_jython = sys.platform.startswith('java')
......
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