main
Name already in use
Commits on Dec 13, 2022
-
Merge pull request #4331 from DimitrisJim/fix_locations_with
Fix end location in with statements.
-
-
Merge pull request #4327 from harupy/fix-end-location-body
Fix end location of compound statements
-
Merge pull request #4330 from charliermarsh/charlie/store
Set `ExprContext::Store` on parenthesized with expressions
Commits on Dec 12, 2022
-
-
-
-
Merge pull request #4329 from andersk/paren-contexts
Parse Python 3.9+ parenthesized context managers
-
Parse Python 3.9+ parenthesized context managers
Since the upstream grammar for this is not LR(1), we abuse LALRPOP macros and the Into/TryInto traits to build a cover grammar that converts to either tuples or `with` items after additional validation. It’s annoying and ugly, but something like this is basically our only option short of switching to a more powerful parser algorithm. Fixes #4145. Signed-off-by: Anders Kaseorg <[email protected]>
-
Split and simplify some LALRPOP rules
Signed-off-by: Anders Kaseorg <[email protected]>
-
-
Commits on Dec 11, 2022
Commits on Dec 10, 2022
-
Merge pull request #4325 from harupy/4324-follow-up
A follow-up for #4324
-
Merge pull request #4324 from harupy/fix-end-location-of-concatenated…
…-string Fix the end location of an implicitly-concatenated string
-
-
-
Commits on Dec 8, 2022
-
Merge pull request #4311 from notJoon/typo-pyserde
fix typo in `py_serde`
-
Commits on Dec 5, 2022
-
Merge pull request #4310 from youknowone/fix-clippy
Fix nightly clippy warnings
-
Merge pull request #4309 from DimitrisJim/openssl_update
Bump openssl
-
-
-
Merge pull request #4306 from harupy/fix-boolop-location
Fix `ExprKind::BoolOp` location