diff options
author | Paul McGuire <ptmcg@austin.rr.com> | 2015-10-29 13:35:44 +0000 |
---|---|---|
committer | Paul McGuire <ptmcg@austin.rr.com> | 2015-10-29 13:35:44 +0000 |
commit | b65b5b45b53a41e67a2e2932d8c6f9128897b106 (patch) | |
tree | a29624514b2c1accd495931d420d6f0cbff34d34 /src/unitTests.py | |
parent | be78411a071404f2e17dbde444a15ad16b2f05b7 (diff) | |
download | pyparsing-git-b65b5b45b53a41e67a2e2932d8c6f9128897b106.tar.gz |
(#($&(#& print statements in runTests broke Py3 compatibility!
Diffstat (limited to 'src/unitTests.py')
-rw-r--r-- | src/unitTests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unitTests.py b/src/unitTests.py index 10ad99e..a675ffe 100644 --- a/src/unitTests.py +++ b/src/unitTests.py @@ -2241,7 +2241,7 @@ class AddConditionTest(ParseTestCase): numParser.addCondition(lambda s,l,t: t[0] >= 7)
result = numParser.searchString("1 2 3 4 5 6 7 8 9 10")
- print result.asList()
+ print_(result.asList())
assert result.asList() == [[7],[9]], "failed to properly process conditions"
|