1. 14284b0 [3.10] Allow the parser to avoid nested processing of invalid rules (GH-31252). (GH-31257) by Pablo Galindo Salgado · 2 years, 8 months ago
  2. 5b58db7 [3.10] bpo-46521: Fix codeop to use a new partial-input mode of the parser (GH-31010). (GH-31213) by Pablo Galindo Salgado · 2 years, 8 months ago
  3. c521412 [3.10] bpo-46004: Fix error location for loops with invalid targets (GH-29959). (GH-29961) by Pablo Galindo Salgado · 2 years, 10 months ago
  4. c72311d [3.10] bpo-45727: Only trigger the 'did you forgot a comma' error suggestion if inside parentheses. (GH-29767) by Pablo Galindo Salgado · 2 years, 10 months ago
  5. 9e209d4 bpo-43914: Correctly highlight SyntaxError exceptions for invalid generator expression in function calls (GH-28576) by Miss Islington (bot) · 3 years ago
  6. b977f85 [3.10] bpo-34013: Generalize the invalid legacy statement error message (GH-27389). (GH-27391) by Pablo Galindo Salgado · 3 years, 2 months ago
  7. 11f1a30 bpo-44456: Improve the syntax error when mixing keyword and positional patterns (GH-26793) by Miss Islington (bot) · 3 years, 3 months ago
  8. c43317d [3.10] Add more const modifiers. (GH-26691). (GH-26692) by Serhiy Storchaka · 3 years, 4 months ago
  9. ae1732d bpo-44180: Fix edge cases in invalid assigment rules in the parser (GH-26283) by Miss Islington (bot) · 3 years, 4 months ago
  10. dbe60ee bpo-43892: Validate the first term of complex literal value patterns (GH-25735) by Brandt Bucher · 3 years, 5 months ago
  11. 1e7b858 bpo-43892: Make match patterns explicit in the AST (GH-25585) by Nick Coghlan · 3 years, 5 months ago
  12. a77aac4 bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525) by Pablo Galindo · 3 years, 5 months ago
  13. b280248 bpo-43822: Improve syntax errors for missing commas (GH-25377) by Pablo Galindo · 3 years, 5 months ago
  14. 75a06f0 bpo-43798: Add source location attributes to alias (GH-25324) by Matthew Suozzo · 3 years, 6 months ago
  15. 58bafe4 Sanitize macros and debug functions in pegen.c (GH-25291) by Pablo Galindo · 3 years, 6 months ago
  16. 57364ce bpo-43244: Remove parser_interface.h header file (GH-25001) by Victor Stinner · 3 years, 6 months ago
  17. 94faa07 bpo-43244: Remove ast.h, asdl.h, Python-ast.h headers (GH-24933) by Victor Stinner · 3 years, 6 months ago
  18. 96eeff5 bpo-43555: Report the column offset for invalid line continuation character (GH-24939) by Pablo Galindo · 3 years, 6 months ago
  19. 366dc3a bpo-35134: Move Include/{pyarena.h,pyctype.h} to Include/cpython/ (GH-24550) by Nicholas Sim · 3 years, 7 months ago
  20. 58fb156 bpo-42997: Improve error message for missing : before suites (GH-24292) by Pablo Galindo · 3 years, 8 months ago
  21. 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
  22. bca7014 bpo-42123: Run the parser two times and only enable invalid rules on the second run (GH-22111) by Lysandros Nikolaou · 4 years ago
  23. 2e5ca9e bpo-41746: Cast to typed seqs in CHECK macros to avoid type erasure (GH-22864) by Lysandros Nikolaou · 4 years ago
  24. a5634c4 bpo-41746: Add type information to asdl_seq objects (GH-22223) by Pablo Galindo · 4 years ago
  25. 315a61f bpo-41697: Correctly handle KeywordOrStarred when parsing arguments in the parser (GH-22077) by Pablo Galindo · 4 years, 1 month ago
  26. 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
  27. 6c4e0bd bpo-41060: Avoid SEGFAULT when calling GET_INVALID_TARGET in the grammar (GH-21020) by Lysandros Nikolaou · 4 years, 3 months ago
  28. 861efc6 bpo-40958: Avoid 'possible loss of data' warning on Windows (GH-20970) by Lysandros Nikolaou · 4 years, 3 months ago
  29. 01ece63 bpo-40334: Produce better error messages on invalid targets (GH-20106) by Lysandros Nikolaou · 4 years, 3 months ago
  30. 51c5896 bpo-40958: Avoid buffer overflow in the parser when indexing the current line (GH-20875) by Pablo Galindo · 4 years, 3 months ago
  31. 1ed83ad bpo-40939: Remove the old parser (GH-20768) by Pablo Galindo · 4 years, 4 months ago[Renamed from Parser/pegen/pegen.h]
  32. 404b23b Fix lookahead of soft keywords in the PEG parser (GH-20436) by Pablo Galindo · 4 years, 4 months ago
  33. b45af1a Add soft keywords (GH-20370) by Guido van Rossum · 4 years, 4 months ago
  34. 800a35c6 bpo-40750: Support -d flag in the new parser (GH-20340) by Pablo Galindo · 4 years, 4 months ago
  35. ae14583 bpo-40334: Produce better error messages for non-parenthesized genexps (GH-20153) by Lysandros Nikolaou · 4 years, 4 months ago
  36. 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
  37. 16ab070 bpo-40334: Correctly identify invalid target in assignment errors (GH-20076) by Pablo Galindo · 4 years, 4 months ago
  38. a15c9b3 bpo-40334: Always show the caret on SyntaxErrors (GH-20050) by Lysandros Nikolaou · 4 years, 4 months ago
  39. ac7a92c bpo-40334: Avoid collisions between parser variables and grammar variables (GH-19987) by Pablo Galindo · 4 years, 5 months ago
  40. 2f37c35 bpo-40334: Fix error location upon parsing an invalid string literal (GH-19962) by Lysandros Nikolaou · 4 years, 5 months ago
  41. 76c1b4d bpo-40334: Improve column offsets for thrown syntax errors by Pegen (GH-19782) by Batuhan Taskaya · 4 years, 5 months ago
  42. 3e0a6f3 bpo-40334: Add support for feature_version in new PEG parser (GH-19827) by Lysandros Nikolaou · 4 years, 5 months ago
  43. c001c09 bpo-40334: Support type comments (GH-19780) by Guido van Rossum · 4 years, 5 months ago
  44. 4db245e bpo-40334: refactor and cleanup for the PEG generators (GH-19775) by Pablo Galindo · 4 years, 5 months ago
  45. 2b74c83 bpo-40334: Support CO_FUTURE_BARRY_AS_BDFL in the new parser (GH-19721) by Pablo Galindo · 4 years, 5 months ago
  46. 1df5a9e bpo-40334: Fix build errors and warnings in test_peg_generator (GH-19672) by Pablo Galindo · 4 years, 5 months ago
  47. c5fc156 bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503) by Pablo Galindo · 4 years, 5 months ago