1. f20ac2e bpo-46820: Fix a SyntaxError in a numeric literal followed by "not in" (GH-31479) (GH-31493) by Miss Islington (bot) · 2 years, 4 months ago
  2. 3d407b9 bpo-46762: Fix an assert failure in f-strings where > or < is the last character if the f-string is missing a trailing right brace. (GH-31365) by Miss Islington (bot) · 2 years, 4 months ago
  3. 14284b0 [3.10] Allow the parser to avoid nested processing of invalid rules (GH-31252). (GH-31257) by Pablo Galindo Salgado · 2 years, 4 months ago
  4. 9b23f8f [3.10] bpo-46707: Avoid potential exponential backtracking in some syntax errors (GH-31241). (GH-31242) by Pablo Galindo Salgado · 2 years, 4 months ago
  5. 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, 4 months ago
  6. 91e8889 bpo-14916: use specified tokenizer fd for file input (GH-31006) by Miss Islington (bot) · 2 years, 5 months ago
  7. 3fc8b74 [3.10] bpo-46091: Correctly calculate indentation levels for whitespace lines with continuation characters (GH-30130). (GH-30898) by Pablo Galindo Salgado · 2 years, 5 months ago
  8. 894e8c1 bpo-46503: Prevent an assert from firing when parsing some invalid \N sequences in f-strings. (GH-30865) (GH-30866) by Miss Islington (bot) · 2 years, 5 months ago
  9. 633db1c [3.10] bpo-46240: Correct the error for unclosed parentheses when the tokenizer is not finished (GH-30378). (GH-30819) by Pablo Galindo Salgado · 2 years, 5 months ago
  10. 1fb1f5d [3.10] bpo-46339: Fix crash in the parser when computing error text for multi-line f-strings (GH-30529) (GH-30542) by Miss Islington (bot) · 2 years, 5 months ago
  11. 19a8550 bpo-46237: Fix the line number of tokenizer errors inside f-strings (GH-30463) by Miss Islington (bot) · 2 years, 5 months ago
  12. bea3f42 bpo-46289: Make conversion of FormattedValue not optional on ASDL (GH-30467) by Miss Islington (bot) · 2 years, 5 months ago
  13. 576e38f bpo-42918: Improve built-in function compile() in mode 'single' (GH-29934) (GH-30040) by Miss Islington (bot) · 2 years, 6 months ago
  14. dc73199 [3.10] bpo-46110: Add a recursion check to avoid stack overflow in the PEG parser (GH-30177) (GH-30214) by Pablo Galindo Salgado · 2 years, 6 months ago
  15. 94483f1 bpo-46054: Fix parsing error when parsing non-utf8 characters in source files (GH-30068) (GH-30069) by Miss Islington (bot) · 2 years, 6 months ago
  16. c521412 [3.10] bpo-46004: Fix error location for loops with invalid targets (GH-29959). (GH-29961) by Pablo Galindo Salgado · 2 years, 6 months ago
  17. b6defde bpo-45866: pegen strips directory of "generated from" header (GH-29777) (GH-29792) by Victor Stinner · 2 years, 7 months ago
  18. 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, 7 months ago
  19. 07cf66f [3.10] Ensure the str member of the tokenizer is always initialised (GH-29681). (GH-29683) by Pablo Galindo Salgado · 2 years, 7 months ago
  20. a427eb8 bpo-45494: Fix error location in EOF tokenizer errors (GH-29108) by Miss Islington (bot) · 2 years, 7 months ago
  21. 511ee1c [3.10] bpo-45727: Make the syntax error for missing comma more consistent (GH-29427) (GH-29647) by Pablo Galindo Salgado · 2 years, 7 months ago
  22. 904af3d [3.10] bpo-45848: Allow the parser to get error lines from encoded files (GH-29646) (GH-29661) by Łukasz Langa · 2 years, 7 months ago
  23. b455df5 bpo-45820: Fix a segfault when the parser fails without reading any input (GH-29580) by Miss Islington (bot) · 2 years, 7 months ago
  24. e3aa9fd [3.10] bpo-45822: Respect PEP 263's coding cookies in the parser even if flags are not provided (GH-29582) (GH-29586) by Pablo Galindo Salgado · 2 years, 7 months ago
  25. 5618c81 [3.10] bpo-45716: Improve the error message when using True/False/None as keywords in a call (GH-29413). (GH-29428) by Pablo Galindo Salgado · 2 years, 7 months ago
  26. bf26a6d bpo-45738: Fix computation of error location for invalid continuation (GH-29550) by Miss Islington (bot) · 2 years, 7 months ago
  27. 0e34a59 [3.10] bpo-44257: fix "assigment_expr" typo + regenerate the grammar, and remove unused imports (GH-29393) (GH-29395) by Pablo Galindo Salgado · 2 years, 8 months ago
  28. d8ca47c bpo-45562: Ensure all tokenizer debug messages are printed to stderr (GH-29270) by Miss Islington (bot) · 2 years, 8 months ago
  29. 038f452 bpo-45562: Print tokenizer debug messages to stderr (GH-29250) (GH-29252) by Miss Islington (bot) · 2 years, 8 months ago
  30. cadf06e bpo-45574: fix warning about `print_escape` being unused (GH-29172) (#29176) by Miss Islington (bot) · 2 years, 8 months ago
  31. ae78ffd bpo-45562: Only show debug output from the parser in debug builds (GH-29140) (#29149) by Miss Islington (bot) · 2 years, 8 months ago
  32. 5c9cab5 [3.10] bpo-45494: Fix parser crash when reporting errors involving invalid continuation characters (GH-28993) (GH-29070) by Łukasz Langa · 2 years, 8 months ago
  33. 0bff4cc [3.10] bpo-45461: Fix IncrementalDecoder and StreamReader in the "unicode-escape" codec (GH-28939) (GH-28943) by Miss Islington (bot) · 2 years, 8 months ago
  34. 4ce55a2 [3.10] bpo-45408: Don't override previous tokenizer errors in the second parser pass (GH-28812). (GH-28813) by Pablo Galindo Salgado · 2 years, 9 months ago
  35. dcfbe4f [3.10] Fix typos in the Objects directory (GH-28766) (GH-28797) by Christian Clauss · 2 years, 9 months ago
  36. 93242d7 [3.10] Remove trailing spaces (GH-28709) by Serhiy Storchaka · 2 years, 9 months ago
  37. 9e209d4 bpo-43914: Correctly highlight SyntaxError exceptions for invalid generator expression in function calls (GH-28576) by Miss Islington (bot) · 2 years, 9 months ago
  38. 846a10f bpo-44947: Refine the syntax error for trailing commas in import statements (GH-27814) by Miss Islington (bot) · 2 years, 10 months ago
  39. c28c2e1 [3.10] bpo-44885: Correct the ast locations of f-strings with format specs and repeated expressions (GH-27729) (GH-27743) by Pablo Galindo Salgado · 2 years, 10 months ago
  40. b1bd16c [3.10] bpo-44838: Refine the custom syntax errors for invalid 'if' expressions (GH-27615). (GH-27616) by Pablo Galindo Salgado · 2 years, 11 months ago
  41. 5671762 bpo-44792: Improve syntax errors for if expressions (GH-27506) (GH-27565) by Miss Islington (bot) · 2 years, 11 months ago
  42. 35035bc bpo-34013: Don't consider a grouped expression when reporting legacy print syntax errors (GH-27521) by Miss Islington (bot) · 2 years, 11 months ago
  43. f7f1c26 Update URLs in comments and metadata to use HTTPS (GH-27458) (GH-27478) by Miss Islington (bot) · 2 years, 11 months ago
  44. 68e3dca bpo-34013: Move the Python 2 hints from the exception constructor to the parser (GH-27392) by Miss Islington (bot) · 2 years, 11 months ago
  45. b977f85 [3.10] bpo-34013: Generalize the invalid legacy statement error message (GH-27389). (GH-27391) by Pablo Galindo Salgado · 2 years, 11 months ago
  46. 2a722d4 bpo-44317: Improve tokenizer errors with more informative locations (GH-26555) (GH-27079) by Miss Islington (bot) · 3 years ago
  47. 11f1a30 bpo-44456: Improve the syntax error when mixing keyword and positional patterns (GH-26793) by Miss Islington (bot) · 3 years ago
  48. a8c418d [3.10] bpo-44368: Improve syntax errors with invalid as pattern targets (GH-26632) (GH-26792) by Pablo Galindo · 3 years ago
  49. 133cddf bpo-44409: Fix error location in tokenizer errors that happen during initialization (GH-26712) by Miss Islington (bot) · 3 years ago
  50. d03f342 bpo-44396: Update multi-line-start location when reallocating tokenizer buffers (GH-26676) (GH-26695) by Miss Islington (bot) · 3 years ago
  51. c43317d [3.10] Add more const modifiers. (GH-26691). (GH-26692) by Serhiy Storchaka · 3 years ago
  52. 3e13742 bpo-44385: Remove unused grammar rules (GH-26655) by Miss Islington (bot) · 3 years ago
  53. f807a4f bpo-44368: Ensure we don't raise incorrect custom syntax errors with soft keywords (GH-26630) by Miss Islington (bot) · 3 years ago
  54. c049609 bpo-44349: Fix edge case when displaying text from files with encoding in syntax errors (GH-26611) (GH-26616) by Miss Islington (bot) · 3 years ago
  55. eeefa7f bpo-43833: Emit warnings for numeric literals followed by keyword (GH-25466) by Miss Islington (bot) · 3 years ago
  56. 2a8d712 bpo-44335: Ensure the tokenizer doesn't go into Python with the error set (GH-26608) by Miss Islington (bot) · 3 years ago
  57. 933b5b6 bpo-44335: Fix a regression when identifying invalid characters in syntax errors (GH-26589) by Miss Islington (bot) · 3 years ago
  58. d80f426 fix: use unambiguous punction in 'invalid escape sequence' message (GH-26582) by Miss Islington (bot) · 3 years ago
  59. e53f72a [3.10] bpo-44305: Improve syntax error for try blocks without except or finally (GH-26523) (GH-26524) by Pablo Galindo · 3 years, 1 month ago
  60. 3283bf4 [3.10] bpo-44273: Improve syntax error message for assigning to "..." (GH-26477) (GH-26478) by Pablo Galindo · 3 years, 1 month ago
  61. 976598d bpo-11105: Do not crash when compiling recursive ASTs (GH-20594) by Miss Islington (bot) · 3 years, 1 month ago
  62. 1fb6b9e bpo-44201: Avoid side effects of "invalid_*" rules in the REPL (GH-26298) (GH-26313) by Miss Islington (bot) · 3 years, 1 month ago
  63. ae1732d bpo-44180: Fix edge cases in invalid assigment rules in the parser (GH-26283) by Miss Islington (bot) · 3 years, 1 month ago
  64. 07dba47 bpo-44180: Report generic syntax errors in the furthest position reached in the first parser pass (GH-26253) (GH-26281) by Miss Islington (bot) · 3 years, 1 month ago
  65. ec0699c bpo-44168: Fix error message in the parser for keyword arguments for invalid expressions (GH-26210) (GH-26247) by Miss Islington (bot) · 3 years, 1 month ago
  66. 1afaaf5 bpo-44143: Fix crash in the parser when raising tokenizer errors with an exception set (GH-26144) (GH-26148) by Miss Islington (bot) · 3 years, 1 month ago
  67. 9a0e65c bpo-43149: Correct the syntax error message for multiple exception types (GH-25996) GH-25997) by Miss Islington (bot) · 3 years, 1 month ago
  68. 756b7b9 bpo-43822: Prioritize tokenizer errors over custom syntax errors when raising parser exceptions (GH-25866) by Miss Islington (bot) · 3 years, 2 months ago
  69. dbe60ee bpo-43892: Validate the first term of complex literal value patterns (GH-25735) by Brandt Bucher · 3 years, 2 months ago
  70. 1e7b858 bpo-43892: Make match patterns explicit in the AST (GH-25585) by Nick Coghlan · 3 years, 2 months ago
  71. 5e437fb bpo-30555: Fix WindowsConsoleIO fails in the presence of fd redirection (GH-1927) by Segev Finer · 3 years, 2 months ago
  72. a77aac4 bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525) by Pablo Galindo · 3 years, 2 months ago
  73. 56c95df bpo-43859: Improve the error message for IndentationError exceptions (GH-25431) by Pablo Galindo · 3 years, 2 months ago
  74. b5b98bd bpo-43823: Fix location of one of the errors for invalid dictionary literals (GH-25427) by Pablo Galindo · 3 years, 2 months ago
  75. b280248 bpo-43822: Improve syntax errors for missing commas (GH-25377) by Pablo Galindo · 3 years, 2 months ago
  76. da74350 bpo-43823: Improve syntax errors for invalid dictionary literals (GH-25378) by Pablo Galindo · 3 years, 2 months ago
  77. 30ed93b bpo-43797: Handle correctly invalid assignments inside function calls and generators (GH-25390) by Pablo Galindo · 3 years, 2 months ago
  78. d9151cb Ensure that early = are not matched by the parser as invalid comparisons (GH-25375) by Pablo Galindo · 3 years, 2 months ago
  79. b86ed8e bpo-43797: Improve syntax error for invalid comparisons (#25317) by Pablo Galindo · 3 years, 2 months ago
  80. 75a06f0 bpo-43798: Add source location attributes to alias (GH-25324) by Matthew Suozzo · 3 years, 2 months ago
  81. d00a449 Simplify _PyPegen_fill_token in pegen.c (GH-25295) by Pablo Galindo · 3 years, 2 months ago
  82. 58bafe4 Sanitize macros and debug functions in pegen.c (GH-25291) by Pablo Galindo · 3 years, 2 months ago
  83. 4f642da Break down some complex functions in pegen.c for readability (GH-25292) by Pablo Galindo · 3 years, 2 months ago
  84. c0e11a3 Fix possible refleak involving _PyArena_AddPyObject (GH-25289) by Erlend Egeberg Aasland · 3 years, 2 months ago
  85. d27f8d2 bpo-43244: Rename pycore_ast.h functions to _PyAST_xxx() (GH-25252) by Victor Stinner · 3 years, 2 months ago
  86. d36d6a9 bpo-43244: Remove Yield macro from pycore_ast.h (GH-25243) by Victor Stinner · 3 years, 2 months ago
  87. 8bbfeb3 bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25142) by Inada Naoki · 3 years, 3 months ago
  88. 92a02c1 Fix tokenizer error when raw decoding null bytes (GH-25080) by Pablo Galindo · 3 years, 3 months ago
  89. 261a452 bpo-25643: Refactor the C tokenizer into smaller, logical units (GH-25050) by Pablo Galindo · 3 years, 3 months ago
  90. 8efad61 bpo-41064: Improve syntax error for invalid usage of '**' in f-strings (GH-25006) by Pablo Galindo · 3 years, 3 months ago
  91. 8370e07 bpo-43244: Remove the pyarena.h header (GH-25007) by Victor Stinner · 3 years, 3 months ago
  92. 57364ce bpo-43244: Remove parser_interface.h header file (GH-25001) by Victor Stinner · 3 years, 3 months ago
  93. 94faa07 bpo-43244: Remove ast.h, asdl.h, Python-ast.h headers (GH-24933) by Victor Stinner · 3 years, 3 months ago
  94. 96eeff5 bpo-43555: Report the column offset for invalid line continuation character (GH-24939) by Pablo Galindo · 3 years, 3 months ago
  95. 123ff26 bpo-43591: Fix error location in interactive mode for errors at the end of the line (GH-24973) by Pablo Galindo · 3 years, 3 months ago
  96. eec8e61 bpo-43244: Remove the PyAST_Validate() function (GH-24911) by Victor Stinner · 3 years, 3 months ago
  97. 6af528b bpo-43244: Fix test_peg_generators on Windows (GH-24913) by Victor Stinner · 3 years, 3 months ago
  98. e0bf70d bpo-43244: Fix test_peg_generator for PyAST_Validate() (GH-24912) by Victor Stinner · 3 years, 3 months ago
  99. 08fb8ac bpo-42128: Add 'missing :' syntax error message to match statements (GH-24733) by Pablo Galindo · 3 years, 3 months ago
  100. b4536e1 bpo-43244: Rename pycore_ast.h to pycore_ast_state.h (GH-24907) by Victor Stinner · 3 years, 3 months ago