From: Collin Winter Date: Wed, 25 Apr 2007 17:57:53 +0000 (+0000) Subject: Change test_support.have_unicode to use True/False instead of 1/0. X-Git-Tag: v2.6a1~1807 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=297996b7d372118dcf18d9a1dee9466caca08848;p=python Change test_support.have_unicode to use True/False instead of 1/0. --- diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index f185dab88d..49d9a9a957 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -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')