diff options
author | Walter Dörwald <walter@livinglogic.de> | 2003-01-09 11:38:50 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2003-01-09 11:38:50 (GMT) |
commit | 0cb27dd023aee4e964cd887e4c7dc2cf4f7be67e (patch) | |
tree | a2949a1c9ded4cb23b0bd64ada689a28aa57923f | |
parent | 4e051d459d7befbba539a0b08b11d70c33494419 (diff) | |
download | cpython-0cb27dd023aee4e964cd887e4c7dc2cf4f7be67e.zip cpython-0cb27dd023aee4e964cd887e4c7dc2cf4f7be67e.tar.gz cpython-0cb27dd023aee4e964cd887e4c7dc2cf4f7be67e.tar.bz2 |
Make the test scripts work again with narrow Python builds.
-rw-r--r-- | Lib/test/test_codeccallbacks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_codeccallbacks.py b/Lib/test/test_codeccallbacks.py index 0b664d9..47360ad 100644 --- a/Lib/test/test_codeccallbacks.py +++ b/Lib/test/test_codeccallbacks.py @@ -506,7 +506,7 @@ class CodecCallbackTest(unittest.TestCase): # Python/codecs.c::PyCodec_XMLCharRefReplaceErrors() # and inline implementations v = (1, 5, 10, 50, 100, 500, 1000, 5000, 10000, 50000) - if sys.maxunicode>50000: + if sys.maxunicode>=100000: v += (100000, 500000, 1000000) s = u"".join([unichr(x) for x in v]) codecs.register_error("test.xmlcharrefreplace", codecs.xmlcharrefreplace_errors) |