summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorptmcg <ptmcg@9bf210a0-9d2d-494c-87cf-cfb32e7dff7b>2016-07-27 21:43:27 +0000
committerptmcg <ptmcg@9bf210a0-9d2d-494c-87cf-cfb32e7dff7b>2016-07-27 21:43:27 +0000
commit5ceb5926274042bdb1a2d97088c5c4ef89c2cbb0 (patch)
tree25d0e2288895d3af8bee35edfd8704675cd766b4
parent5de6ce85bdaf6737d0533aa749249f20e7703725 (diff)
downloadpyparsing-5ceb5926274042bdb1a2d97088c5c4ef89c2cbb0.tar.gz
Typo in Jython-specific unit test
git-svn-id: svn://svn.code.sf.net/p/pyparsing/code/trunk@381 9bf210a0-9d2d-494c-87cf-cfb32e7dff7b
-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)