diff options
author | Matt Carmody <33763384+mattcarmody@users.noreply.github.com> | 2020-03-22 00:40:48 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-21 19:40:48 -0500 |
commit | 541159939d8679e3f0550f4f3f756c3a6a805432 (patch) | |
tree | e41a56f5fb0da4c24ee63098e0f2b3dc66f4a87c /pyparsing/helpers.py | |
parent | dc1ca6846691df2c2f36136fe749d790e9af6f37 (diff) | |
download | pyparsing-git-541159939d8679e3f0550f4f3f756c3a6a805432.tar.gz |
Housekeeping (#191)
* Correct docstring typo in helpers.py
* Remove repetitive imports of pyparsing in tests
* Move repetitive pyparsing_common calls to module level ppc
* Correct docstrings inline code typos
Diffstat (limited to 'pyparsing/helpers.py')
-rw-r--r-- | pyparsing/helpers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyparsing/helpers.py b/pyparsing/helpers.py index c4b84d7..5408885 100644 --- a/pyparsing/helpers.py +++ b/pyparsing/helpers.py @@ -150,7 +150,7 @@ def oneOf(strs, caseless=False, useRegex=True, asKeyword=False): generate a Regex object; otherwise, will generate a :class:`MatchFirst` object (if ``caseless=True`` or ``asKeyword=True``, or if creating a :class:`Regex` raises an exception) - - asKeyword - (default=``False``) - enforce Keyword-style matching on the + - asKeyword - (default= ``False``) - enforce Keyword-style matching on the generated expressions Example:: |