LibCST/native
Zsolt Dollenstein c854c986b6
Fix parsing list matchers without explicit brackets (#1097)
```
match a:
  case 1, 2: pass
```

This is parsed correctly by the grammar, but the default values of `MatchList.lbracket` and `MatchList.rbracket` are inconsistent between Python and Rust, causing the above snippet to round-trip (from Python) to:
```
match a:
  case [1, 2]: pass
```

Fixes #1096.
2024-02-02 20:49:25 +00:00
..
libcst Fix parsing list matchers without explicit brackets (#1097) 2024-02-02 20:49:25 +00:00
libcst_derive Update syn to v2 (#1064) 2023-12-20 15:53:54 +00:00
Cargo.lock Update syn to v2 (#1064) 2023-12-20 15:53:54 +00:00
Cargo.toml Implement a Python PEG parser in Rust (#566) 2021-12-21 18:14:39 +00:00
roundtrip.sh fix copyright headers and add a script to check (#635) 2022-02-01 11:13:17 +00:00