diff options
author | ptmcg <ptmcg@austin.rr.com> | 2021-04-13 03:02:42 -0500 |
---|---|---|
committer | ptmcg <ptmcg@austin.rr.com> | 2021-04-13 03:02:59 -0500 |
commit | 9e8ad930fefc3611e4c70ba612af7fd6b974fb85 (patch) | |
tree | 54fef776df4cdbfa1cc2c7bdb871bc0e08863e45 /pyparsing | |
parent | 6e9b4c9e88534d9df673e67d13cfb06529d02ca0 (diff) | |
download | pyparsing-git-9e8ad930fefc3611e4c70ba612af7fd6b974fb85.tar.gz |
#271 - remove comparison with bytes in ParseResults._null_values
Diffstat (limited to 'pyparsing')
-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 46c9f20..fb03ecd 100644 --- a/pyparsing/results.py +++ b/pyparsing/results.py @@ -69,7 +69,7 @@ class ParseResults: - month: 12 - year: 1999 """ - _null_values = (None, b"", "", [], ()) + _null_values = (None, "", [], ()) __slots__ = [ "_name", |