LibCST/native/libcst/tests
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
..
fixtures Fix parsing list matchers without explicit brackets (#1097) 2024-02-02 20:49:25 +00:00
.gitattributes Support files with mixed newlines (#1007) 2023-09-02 09:56:20 +01:00
parser_roundtrip.rs fix copyright headers and add a script to check (#635) 2022-02-01 11:13:17 +00:00