summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/unitTests.py2
1 files changed, 1 insertions, 1 deletions
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)