[Python-checkins] r54958 - python/trunk/Lib/test/test_support.py (original) (raw)

collin.winter python-checkins at python.org
Wed Apr 25 19:57:54 CEST 2007


Author: collin.winter Date: Wed Apr 25 19:57:53 2007 New Revision: 54958

Modified: python/trunk/Lib/test/test_support.py Log: Change test_support.have_unicode to use True/False instead of 1/0.

Modified: python/trunk/Lib/test/test_support.py

--- python/trunk/Lib/test/test_support.py (original) +++ python/trunk/Lib/test/test_support.py Wed Apr 25 19:57:53 2007 @@ -133,9 +133,9 @@ try: unicode - have_unicode = 1 + have_unicode = True except NameError: - have_unicode = 0 + have_unicode = False is_jython = sys.platform.startswith('java')


More information about the Python-checkins mailing list