From 5ceb5926274042bdb1a2d97088c5c4ef89c2cbb0 Mon Sep 17 00:00:00 2001 From: ptmcg Date: Wed, 27 Jul 2016 21:43:27 +0000 Subject: Typo in Jython-specific unit test git-svn-id: svn://svn.code.sf.net/p/pyparsing/code/trunk@381 9bf210a0-9d2d-494c-87cf-cfb32e7dff7b --- src/unitTests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unitTests.py b/src/unitTests.py index ad352a4..392a905 100644 --- a/src/unitTests.py +++ b/src/unitTests.py @@ -1454,7 +1454,7 @@ class UpcaseDowncaseUnicode(ParseTestCase): ualphas = "".join( unichr(i) for i in range(sys.maxunicode) if unichr(i).isalpha() ) else: - ualphas = "".join( unichr(i) for i in list(range(0xd800)) + list(range(0xe00,sys.maxunicode)) + ualphas = "".join( unichr(i) for i in list(range(0xd800)) + list(range(0xe000,sys.maxunicode)) if unichr(i).isalpha() ) uword = pp.Word(ualphas).setParseAction(pp.upcaseTokens) -- cgit v1.2.1