diff options
author | Paul McGuire <ptmcg@austin.rr.com> | 2015-11-01 04:44:32 +0000 |
---|---|---|
committer | Paul McGuire <ptmcg@austin.rr.com> | 2015-11-01 04:44:32 +0000 |
commit | 498a0e3f77a923a1d5503a6ff1305f1c9110adbe (patch) | |
tree | 69302e7ff876ab86d7c30a99830b031cd9b4a52b /src/pyparsing.py | |
parent | 1bb9c6be592bfbe18327c81f31a448ffadeca1ec (diff) | |
download | pyparsing-git-498a0e3f77a923a1d5503a6ff1305f1c9110adbe.tar.gz |
Fixed bug (introduced in 2.0.4) in dump where the lists would be shown in duplicate
Diffstat (limited to 'src/pyparsing.py')
-rw-r--r-- | src/pyparsing.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/pyparsing.py b/src/pyparsing.py index d239524..8ee2a18 100644 --- a/src/pyparsing.py +++ b/src/pyparsing.py @@ -58,7 +58,7 @@ The pyparsing module handles some of the problems that are typically vexing when """
__version__ = "2.0.6"
-__versionTime__ = "31 Oct 2015 12:41"
+__versionTime__ = "31 Oct 2015 23:41"
__author__ = "Paul McGuire <ptmcg@users.sourceforge.net>"
import string
@@ -660,8 +660,6 @@ class ParseResults(object): out.append("\n%s%s[%d]:\n%s%s%s" % (indent,(' '*(depth)),i,indent,(' '*(depth+1)),vv.dump(indent,depth+1) ))
else:
out.append("\n%s%s[%d]:\n%s%s%s" % (indent,(' '*(depth)),i,indent,(' '*(depth+1)),_ustr(vv)))
- else:
- out.append(_ustr(self))
return "".join(out)
|