Commit dc891646 authored by Collin Winter's avatar Collin Winter

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

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