diff options
author | ptmcg <ptmcg@austin.rr.com> | 2022-01-02 16:05:33 -0600 |
---|---|---|
committer | ptmcg <ptmcg@austin.rr.com> | 2022-01-02 16:05:33 -0600 |
commit | 30bd0f3445ed585e9263b8d132004ccb0732a3d7 (patch) | |
tree | 10ff81dd4b0ee60ba434a6c3b4dcd10e94fd031e /pyparsing/unicode.py | |
parent | 577145948bd6063f34a37933ca3a476b5f7ddc4b (diff) | |
download | pyparsing-git-30bd0f3445ed585e9263b8d132004ccb0732a3d7.tar.gz |
Some code cleanup, replacing map() calls with list comprehensions; better typing for debug actions using typing.NamedTuple; using list comps in "".join calls
Diffstat (limited to 'pyparsing/unicode.py')
-rw-r--r-- | pyparsing/unicode.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyparsing/unicode.py b/pyparsing/unicode.py index caa3306..9226148 100644 --- a/pyparsing/unicode.py +++ b/pyparsing/unicode.py @@ -108,7 +108,7 @@ class unicode_set: cls.identchars + "0123456789" + "".join( - c for c in cls._chars_for_ranges if ("_" + c).isidentifier() + [c for c in cls._chars_for_ranges if ("_" + c).isidentifier()] ) ) ) |