Bump pyparsing from 3.1.2 to 3.1.4 (#2388)

* Bump pyparsing from 3.1.2 to 3.1.4

Bumps [pyparsing](https://github.com/pyparsing/pyparsing) from 3.1.2 to 3.1.4.
- [Release notes](https://github.com/pyparsing/pyparsing/releases)
- [Changelog](https://github.com/pyparsing/pyparsing/blob/master/CHANGES)
- [Commits](https://github.com/pyparsing/pyparsing/compare/pyparsing_3.1.2...3.1.4)

---
updated-dependencies:
- dependency-name: pyparsing
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update pyparsing==3.1.4

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com>

[skip ci]
This commit is contained in:
dependabot[bot] 2024-11-16 14:47:48 -08:00 committed by GitHub
parent 2f3d24a0e7
commit d3f7eef84f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 323 additions and 223 deletions

View file

@ -782,9 +782,12 @@ def infix_notation(
# if lpar and rpar are not suppressed, wrap in group
if not (isinstance(lpar, Suppress) and isinstance(rpar, Suppress)):
lastExpr = base_expr | Group(lpar + ret + rpar)
lastExpr = base_expr | Group(lpar + ret + rpar).set_name(
f"nested_{base_expr.name}"
)
else:
lastExpr = base_expr | (lpar + ret + rpar)
lastExpr = base_expr | (lpar + ret + rpar).set_name(f"nested_{base_expr.name}")
root_expr = lastExpr
arity: int
rightLeftAssoc: opAssoc
@ -855,6 +858,7 @@ def infix_notation(
thisExpr <<= (matchExpr | lastExpr).setName(term_name)
lastExpr = thisExpr
ret <<= lastExpr
root_expr.set_name("base_expr")
return ret
@ -1049,7 +1053,7 @@ def delimited_list(
)
# pre-PEP8 compatible names
# Compatibility synonyms
# fmt: off
opAssoc = OpAssoc
anyOpenTag = any_open_tag