1. 9bdc40e Refactor the grammar to match the language specification docs (GH-23574) by Pablo Galindo · 3 years, 10 months ago
  2. b0aba1f bpo-42381: Allow walrus in set literals and set comprehensions (GH-23332) by Pablo Galindo · 3 years, 10 months ago
  3. cae6018 bpo-42316: Allow unparenthesized walrus operator in indexes (GH-23317) by Lysandros Nikolaou · 3 years, 10 months ago
  4. cb3e5ed bpo-42374: Allow unparenthesized walrus in genexps (GH-23319) by Lysandros Nikolaou · 3 years, 10 months ago
  5. 06f8c33 bpo-42214: Fix check for NOTEQUAL token in the PEG parser for the barry_as_flufl rule (GH-23048) by Pablo Galindo · 3 years, 11 months ago
  6. 15acc4e bpo-41659: Disallow curly brace directly after primary (GH-22996) by Lysandros Nikolaou · 3 years, 11 months ago
  7. bca7014 bpo-42123: Run the parser two times and only enable invalid rules on the second run (GH-22111) by Lysandros Nikolaou · 3 years, 11 months ago
  8. 2e5ca9e bpo-41746: Cast to typed seqs in CHECK macros to avoid type erasure (GH-22864) by Lysandros Nikolaou · 4 years ago
  9. 48f305f bpo-41979: Accept star-unpacking on with-item targets (GH-22611) by Batuhan Taskaya · 4 years ago
  10. a5634c4 bpo-41746: Add type information to asdl_seq objects (GH-22223) by Pablo Galindo · 4 years ago
  11. 315a61f bpo-41697: Correctly handle KeywordOrStarred when parsing arguments in the parser (GH-22077) by Pablo Galindo · 4 years, 1 month ago
  12. 4a97b15 bpo-41690: Use a loop to collect args in the parser instead of recursion (GH-22053) by Pablo Galindo · 4 years, 1 month ago
  13. c8f29ad bpo-40769: Allow extra surrounding parentheses for invalid annotated assignment rule (GH-20387) by Batuhan Taskaya · 4 years, 3 months ago
  14. 4b85e60 bpo-41119: Output correct error message for list/tuple followed by colon (GH-21160) by Lysandros Nikolaou · 4 years, 3 months ago
  15. 6c4e0bd bpo-41060: Avoid SEGFAULT when calling GET_INVALID_TARGET in the grammar (GH-21020) by Lysandros Nikolaou · 4 years, 3 months ago
  16. 01ece63 bpo-40334: Produce better error messages on invalid targets (GH-20106) by Lysandros Nikolaou · 4 years, 3 months ago
  17. b4282dd Remove unnecessary grammar decorations and change header (GH-20819) by Pablo Galindo · 4 years, 3 months ago
  18. bcd7dee bpo-40939: Remove PEG parser easter egg (__new_parser__) (#20802) by Lysandros Nikolaou · 4 years, 3 months ago
  19. c6483c9 Raise specialised syntax error for invalid lambda parameters (GH-20776) by Pablo Galindo · 4 years, 3 months ago
  20. 9f49590 bpo-40903: Handle multiple '=' in invalid assignment rules in the PEG parser (GH-20697) by Pablo Galindo · 4 years, 3 months ago
  21. ae14583 bpo-40334: Produce better error messages for non-parenthesized genexps (GH-20153) by Lysandros Nikolaou · 4 years, 4 months ago
  22. b8a65ec bpo-40715: Reject dict unpacking on dict comprehensions (GH-20292) by Batuhan Taskaya · 4 years, 4 months ago
  23. 72e0aa2 bpo-40176: Improve error messages for trailing comma on from import (GH-20294) by Batuhan Taskaya · 4 years, 4 months ago
  24. 75b863a bpo-40334: Reproduce error message for type comments on bare '*' in the new parser (GH-20151) by Lysandros Nikolaou · 4 years, 4 months ago
  25. 16ab070 bpo-40334: Correctly identify invalid target in assignment errors (GH-20076) by Pablo Galindo · 4 years, 4 months ago
  26. ce21cfc bpo-40618: Disallow invalid targets in augassign and except clauses (GH-20083) by Lysandros Nikolaou · 4 years, 4 months ago
  27. a15c9b3 bpo-40334: Always show the caret on SyntaxErrors (GH-20050) by Lysandros Nikolaou · 4 years, 4 months ago
  28. 27c0d9b bpo-40334: produce specialized errors for invalid del targets (GH-19911) by Shantanu · 4 years, 4 months ago
  29. 4638c64 bpo-40334: Error message for invalid default args in function call (GH-19973) by Lysandros Nikolaou · 4 years, 4 months ago
  30. 99db2a1 bpo-40334: Allow trailing comma in parenthesised context managers (GH-19964) by Pablo Galindo · 4 years, 5 months ago
  31. 999ec9a bpo-40334: Add type to the assignment rule in the grammar file (GH-19963) by Lysandros Nikolaou · 4 years, 5 months ago
  32. e10e7c7 bpo-40334: Spacialized error message for invalid args after bare '*' (GH-19865) by Lysandros Nikolaou · 4 years, 5 months ago
  33. 603d354 bpo-40493: fix function type comment parsing (GH-19894) by Shantanu · 4 years, 5 months ago
  34. 3941d97 bpo-40334: Refactor lambda_parameters similar to parameters (GH-19830) by Guido van Rossum · 4 years, 5 months ago
  35. d955241 bpo-40334: Correct return value of func_type_comment (GH-19833) by Pablo Galindo · 4 years, 5 months ago
  36. 76c1b4d bpo-40334: Improve column offsets for thrown syntax errors by Pegen (GH-19782) by Batuhan Taskaya · 4 years, 5 months ago
  37. 3e0a6f3 bpo-40334: Add support for feature_version in new PEG parser (GH-19827) by Lysandros Nikolaou · 4 years, 5 months ago
  38. c001c09 bpo-40334: Support type comments (GH-19780) by Guido van Rossum · 4 years, 5 months ago
  39. 2b74c83 bpo-40334: Support CO_FUTURE_BARRY_AS_BDFL in the new parser (GH-19721) by Pablo Galindo · 4 years, 5 months ago
  40. c5fc156 bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503) by Pablo Galindo · 4 years, 5 months ago