summaryrefslogtreecommitdiff
path: root/pyparsing/helpers.py
diff options
context:
space:
mode:
authorDevin J. Pohly <djpohly@gmail.com>2022-06-10 00:55:10 -0500
committerGitHub <noreply@github.com>2022-06-10 00:55:10 -0500
commit063a75a61fa026226583bd42149cbeea7fc03005 (patch)
treefd4e1d5f779861205d21cdb758e100b9fae3cb41 /pyparsing/helpers.py
parent7ec34f497ebc9cbfd51ffeb5cce569133eb7c3c1 (diff)
downloadpyparsing-git-063a75a61fa026226583bd42149cbeea7fc03005.tar.gz
fix Sphinx errors/warnings (#410)
Two warnings remain from the Hebrew and Devanagari names in pyparsing_unicode, but those are due to Sphinx using Python's builtin `re` library to parse identifiers (which does not have thorough Unicode handling for `\w`).
Diffstat (limited to 'pyparsing/helpers.py')
-rw-r--r--pyparsing/helpers.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/pyparsing/helpers.py b/pyparsing/helpers.py
index 5cc5893..9d2c9a2 100644
--- a/pyparsing/helpers.py
+++ b/pyparsing/helpers.py
@@ -467,6 +467,7 @@ def nested_expr(
closing delimiters (``"("`` and ``")"`` are the default).
Parameters:
+
- ``opener`` - opening character for a nested list
(default= ``"("``); can also be a pyparsing expression
- ``closer`` - closing character for a nested list
@@ -738,6 +739,7 @@ def infix_notation(
improve your parser performance.
Parameters:
+
- ``base_expr`` - expression representing the most basic operand to
be used in the expression
- ``op_list`` - list of tuples, one for each operator precedence level