diff options
author | ptmcg <ptmcg@austin.rr.com> | 2023-03-27 01:13:38 -0500 |
---|---|---|
committer | ptmcg <ptmcg@austin.rr.com> | 2023-03-27 01:13:38 -0500 |
commit | 24b0b29ea9e6335a465711d3d6e157effeaf583e (patch) | |
tree | 6b569613c1ba565dd58c6ffe0a6a07a1f3628489 /pyparsing/results.py | |
parent | 9d789cbc7331509862060c8b06ebca9fe9d827b2 (diff) | |
download | pyparsing-git-24b0b29ea9e6335a465711d3d6e157effeaf583e.tar.gz |
Fix #470 - Removed "" from the list of values that ParseResults will not save with a results name
Diffstat (limited to 'pyparsing/results.py')
-rw-r--r-- | pyparsing/results.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyparsing/results.py b/pyparsing/results.py index 1134456..92f89f4 100644 --- a/pyparsing/results.py +++ b/pyparsing/results.py @@ -77,7 +77,7 @@ class ParseResults: - year: '1999' """ - _null_values: Tuple[Any, ...] = (None, [], "", ()) + _null_values: Tuple[Any, ...] = (None, [], ()) _name: str _parent: "ParseResults" |