From 297996b7d372118dcf18d9a1dee9466caca08848 Mon Sep 17 00:00:00 2001 From: Collin Winter Date: Wed, 25 Apr 2007 17:57:53 +0000 Subject: [PATCH] Change test_support.have_unicode to use True/False instead of 1/0. --- Lib/test/test_support.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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') -- 2.50.1