diff options
author | Paul McGuire <ptmcg@austin.rr.com> | 2018-12-30 18:33:52 -0600 |
---|---|---|
committer | Paul McGuire <ptmcg@austin.rr.com> | 2018-12-30 18:33:52 -0600 |
commit | c2fdc55b760c04ceb04ad7e1bb3d9cd6b070aa3e (patch) | |
tree | 673740f28d22948e879822ff7c5895a39d33b548 | |
parent | 209f236fec0444f6900f0bc9c76d8c565717dab0 (diff) | |
download | pyparsing-git-c2fdc55b760c04ceb04ad7e1bb3d9cd6b070aa3e.tar.gz |
Remove print() call left in to test decoy
-rw-r--r-- | unitTests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unitTests.py b/unitTests.py index ba7b42c..f7276e5 100644 --- a/unitTests.py +++ b/unitTests.py @@ -4022,7 +4022,7 @@ class MiscellaneousParserTests(ParseTestCase): print_("verify behavior of ParseResults.get()")
# use sum() to merge separate groups into single ParseResults
res = sum(g1.parseString(teststring)[1:])
- print(res.dump())
+ print_(res.dump())
print_(res.get("A","A not found"))
print_(res.get("D","!D"))
self.assertEqual(res.get("A","A not found"), "aaa", "get on existing key failed")
|