Python 3.9.11
  1. a657bff 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) · 3 years, 6 months ago
  2. c314e3e bpo-46503: Prevent an assert from firing when parsing some invalid \N sequences in f-strings. (GH-30865) (30867) by Miss Islington (bot) · 3 years, 7 months ago
  3. e5cf31d [3.9] bpo-46110: Add a recursion check to avoid stack overflow in the PEG parser (GH-30177) (#30215) by Pablo Galindo Salgado · 3 years, 8 months ago
  4. 93a540d bpo-45866: pegen strips directory of "generated from" header (GH-29777) (GH-29792) (GH-29797) by Victor Stinner · 3 years, 9 months ago
  5. 00ee14e [3.9] bpo-45820: Fix a segfault when the parser fails without reading any input (GH-29580) (GH-29584) by Miss Islington (bot) · 3 years, 9 months ago
  6. 0ef308a bpo-45822: Respect PEP 263's coding cookies in the parser even if flags are not provided (GH-29582) (GH-29585) by Pablo Galindo Salgado · 3 years, 9 months ago
  7. 142fcb4 bpo-45738: Fix computation of error location for invalid continuation characters in the parser (GH-29550) (GH-29552) by Pablo Galindo Salgado · 3 years, 9 months ago
  8. 88f4ec8 [3.9] bpo-45494: Fix parser crash when reporting errors involving invalid continuation characters (GH-28993) (#29071) by Łukasz Langa · 3 years, 10 months ago
  9. 7c722e3 [3.9] bpo-45461: Fix IncrementalDecoder and StreamReader in the "unicode-escape" codec (GH-28939) (GH-28945) by Serhiy Storchaka · 3 years, 10 months ago
  10. 4e4d35d [3.9] bpo-44947: Refine the syntax error for trailing commas in import statements (GH-27814) (GH-27817) by Łukasz Langa · 4 years ago
  11. 4b86c9c [3.9] bpo-44885: Correct the ast locations of f-strings with format specs and repeated expressions (GH-27729) (GH-27744) by Pablo Galindo Salgado · 4 years ago
  12. 168879e [3.9] Update URLs in comments and metadata to use HTTPS (GH-27458) (GH-27480) by Łukasz Langa · 4 years, 1 month ago
  13. 0d0a9ea [3.9] bpo-44409: Fix error location in tokenizer errors that happen during initialization (GH-26712). (GH-26723) by Pablo Galindo · 4 years, 2 months ago
  14. 3ce35bf [3.9] bpo-44385: Remove unused grammar rules (GH-26655) (GH-26659) by Lysandros Nikolaou · 4 years, 2 months ago
  15. de58b31 [3.9] bpo-11105: Do not crash when compiling recursive ASTs (GH-20594) (GH-26522) by Batuhan Taskaya · 4 years, 3 months ago
  16. d4a9264 [3.9] bpo-44168: Fix error message in the parser for keyword arguments for invalid expressions (GH-26210) (GH-26250) by Pablo Galindo · 4 years, 3 months ago
  17. 76d270e [3.9] bpo-43779: Fix possible refleak involving _PyArena_AddPyObject (GH-25289). (GH-25294) by Erlend Egeberg Aasland · 4 years, 4 months ago
  18. 994a519 bpo-43555: Report the column offset for invalid line continuation character (GH-24939) (#24975) by Miss Islington (bot) · 4 years, 5 months ago
  19. bfc413c [3.9] bpo-42806: Fix ast locations of f-strings inside parentheses (GH-24067) (GH-24069) by Pablo Galindo · 4 years, 8 months ago
  20. 9a608ac [3.9] bpo-40631: Disallow single parenthesized star target (GH-24027) (GH-24068) by Lysandros Nikolaou · 4 years, 8 months ago
  21. 87c87b5 [3.9] bpo-42381: Allow walrus in set literals and set comprehensions (GH-23332) (GH-23333) by Pablo Galindo · 4 years, 9 months ago
  22. 994c68f bpo-40998: Address compiler warnings found by ubsan (GH-20929) by Miss Islington (bot) · 4 years, 9 months ago
  23. 2b800ef bpo-42374: Allow unparenthesized walrus in genexps (GH-23319) (GH-23329) by Lysandros Nikolaou · 4 years, 9 months ago
  24. cfcb952 [3.9] bpo-42218: Correctly handle errors in left-recursive rules (GH-23065) (GH-23066) by Lysandros Nikolaou · 4 years, 10 months ago
  25. ddcd57e [3.9] bpo-42214: Fix check for NOTEQUAL token in the PEG parser for the barry_as_flufl rule (GH-23048) (GH-23051) by Pablo Galindo · 4 years, 10 months ago
  26. 24a7c29 [3.9] bpo-42123: Run the parser two times and only enable invalid rules on the second run (GH-22111) (GH-23011) by Lysandros Nikolaou · 4 years, 10 months ago
  27. c4b58ce [3.9] bpo-41659: Disallow curly brace directly after primary (GH-22996) (#23006) by Lysandros Nikolaou · 4 years, 10 months ago
  28. 0b290dd bpo-42150: Avoid buffer overflow in the new parser (GH-22978) by Miss Skeleton (bot) · 4 years, 10 months ago
  29. 42157b9 [3.9] bpo-41979: Accept star-unpacking on with-item targets (GH-22611) (GH-22612) by Batuhan Taskaya · 4 years, 10 months ago
  30. 55e0836 [3.9] bpo-41631: _ast module uses again a global state (GH-21961) (GH-22258) by Pablo Galindo · 5 years ago
  31. be17295 [3.9] bpo-41697: Correctly handle KeywordOrStarred when parsing arguments in the parser (GH-22077) (GH-22079) by Pablo Galindo · 5 years ago
  32. 8de34cd [3.9] bpo-41690: Use a loop to collect args in the parser instead of recursion (GH-22053) (GH-22067) by Pablo Galindo · 5 years ago
  33. d2bea26 [3.9] bpo-41194: Convert _ast extension to PEP 489 (GH-21807) by Victor Stinner · 5 years ago
  34. b6724be bpo-38156: Fix compiler warning in PyOS_StdioReadline() (GH-21721) by Miss Islington (bot) · 5 years ago
  35. 2221610 closes bpo-38156: Always handle interrupts in PyOS_StdioReadline. (GH-21569) by Miss Islington (bot) · 5 years ago
  36. bc2c0e9 [3.9] Validate the AST produced by the parser in debug mode (GH-21643) (GH-21646) by Pablo Galindo · 5 years ago
  37. 9d8b8c3 Fix trivial typo in the PEG string parser (GH-21508) by Miss Islington (bot) · 5 years ago
  38. 961703c Fix possibly-unitialized warning in string_parser.c. (GH-21503) by Miss Islington (bot) · 5 years ago
  39. edeaf61 bpo-41215: Make assertion in the new parser more strict (GH-21364) by Miss Islington (bot) · 5 years ago
  40. 54f115d [3.9] bpo-41215: Don't use NULL by default in the PEG parser keyword list (GH-21355) (GH-21356) by Pablo Galindo · 5 years ago
  41. f859927 [3.9] bpo-41194: The _ast module cannot be loaded more than once (GH-21290) (GH-21292) by Victor Stinner · 5 years ago
  42. 2a1ee1d [3.9] bpo-35975: Only use cf_feature_version if PyCF_ONLY_AST in cf_flags (#21022) by Guido van Rossum · 5 years ago
  43. dab533d [3.9] bpo-41076: Pre-feed the parser with the f-string expression location (GH-21054) (GH-21190) by Pablo Galindo · 5 years ago
  44. 102ca52 [3.9] bpo-40769: Allow extra surrounding parentheses for invalid annotated assignment rule (GH-20387) (GH-21186) by Pablo Galindo · 5 years ago
  45. cb0dc52 bpo-41084: Adjust message when an f-string expression causes a SyntaxError (GH-21084) by Miss Islington (bot) · 5 years ago
  46. 5193d0a [3.9] bpo-41132: Use pymalloc allocator in the f-string parser (GH-21173) (GH-21183) by Lysandros Nikolaou · 5 years ago
  47. d01a3e7 [3.9] bpo-41119: Output correct error message for list/tuple followed by colon (GH-21160) (GH-21172) by Lysandros Nikolaou · 5 years ago
  48. 71bb921 [3.9] bpo-41060: Avoid SEGFAULT when calling GET_INVALID_TARGET in the grammar (GH-21020) (GH-21024) by Lysandros Nikolaou · 5 years ago
  49. c9f83c1 bpo-40958: Avoid 'possible loss of data' warning on Windows (GH-20970) by Miss Islington (bot) · 5 years ago
  50. a5442b2 [3.9] bpo-40334: Produce better error messages on invalid targets (GH-20106) (GH-20973) by Lysandros Nikolaou · 5 years ago
  51. 7795ae8 bpo-40958: Avoid buffer overflow in the parser when indexing the current line (GH-20875) (GH-20919) by Miss Islington (bot) · 5 years ago
  52. b498c7f bpo-36020: Remove snprintf macro in pyerrors.h (GH-20889) by Miss Islington (bot) · 5 years ago
  53. 30b59fd [3.9] Improve readability and style in parser files (GH-20884) (GH-20885) by Pablo Galindo · 5 years ago
  54. 3782497 [3.9] bpo-40939: Fix test_keyword for the old parser (GH-20814) by Pablo Galindo · 5 years ago
  55. e3ce3bb bpo-40847: Consider a line with only a LINECONT a blank line (GH-20769) by Miss Islington (bot) · 5 years ago
  56. d55ed7b Raise specialised syntax error for invalid lambda parameters (GH-20776) by Miss Islington (bot) · 5 years ago
  57. 8df4f39 bpo-40903: Handle multiple '=' in invalid assignment rules in the PEG parser (GH-20697) by Miss Islington (bot) · 5 years ago
  58. 6440911 bpo-40904: Fix segfault in the new parser with f-string containing yield statements with no value (GH-20701) by Miss Islington (bot) · 5 years ago
  59. 15fec56 bpo-40880: Fix invalid read in newline_in_string in pegen.c (GH-20666) by Miss Islington (bot) · 5 years ago
  60. 79e6c15 bpo-40883: Fix memory leak in fstring_compile_expr in parse_string.c (GH-20667) by Miss Islington (bot) · 5 years ago
  61. 5d2396c [3.9] bpo-40826: Fix GIL usage in PyOS_Readline() (GH-20613) by Victor Stinner · 5 years ago
  62. bcbe5c5 bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSpec types (reverts GH-19414) (GH-20264) by Miss Islington (bot) · 5 years ago
  63. 9b83829 [3.9] bpo-40614: Respect feature version for f-string debug expressions (GH-20196) (GH-20464) by Pablo Galindo · 5 years ago
  64. c011d1b [3.9] Backport GH-20440: Set p->error_indicator in more places (GH-20457) by Lysandros Nikolaou · 5 years ago
  65. 1bfe659 [3.9] Backport GH-20370 and GH-20436: Soft keywords (GH-20458) by Lysandros Nikolaou · 5 years ago
  66. fda4765 Fix peg_generator compiler warnings under MSVC (GH-20405) by Miss Islington (bot) · 5 years ago
  67. 791a46e [3.9] bpo-38964: Print correct filename on a SyntaxError in an fstring (GH-20399) (GH-20404) by Lysandros Nikolaou · 5 years ago
  68. 31084be bpo-40750: Do not expand the new parser debug flags if Py_BUILD_CORE is not defined (GH-20393) by Miss Islington (bot) · 5 years ago
  69. 82da2c3 bpo-40750: Support -d flag in the new parser (GH-20340) by Miss Islington (bot) · 5 years ago
  70. 1a4e9e6 bpo-36290: Fix keytword collision handling in AST node constructors (GH-12382) by Miss Islington (bot) · 5 years ago
  71. 11fb605 Use Py_ssize_t for the column number in the PEG support code (GH-20341) by Miss Islington (bot) · 5 years ago
  72. 55c8923 bpo-40334: Produce better error messages for non-parenthesized genexps (GH-20153) by Miss Islington (bot) · 5 years ago
  73. d00aaf3 bpo-40715: Reject dict unpacking on dict comprehensions (GH-20292) by Miss Islington (bot) · 5 years ago
  74. 275d7e1 [3.9] bpo-40176: Improve error messages for trailing comma on from import (GH-20294) (GH-20302) by Pablo Galindo · 5 years ago
  75. ced4e5c Regenerate the parser (#20195) by Pablo Galindo · 5 years ago
  76. 75b863a bpo-40334: Reproduce error message for type comments on bare '*' in the new parser (GH-20151) by Lysandros Nikolaou · 5 years ago
  77. 63b8e0c bpo-40528: Improve AST generation script to do builds simultaneously (GH-19968) by Batuhan Taskaya · 5 years ago
  78. 7b7a21b bpo-40661: Fix segfault when parsing invalid input (GH-20165) by Lysandros Nikolaou · 5 years ago
  79. 2c8cd06 bpo-40334: Improvements to error-handling code in the PEG parser (GH-20003) by Lysandros Nikolaou · 5 years ago
  80. 16ab070 bpo-40334: Correctly identify invalid target in assignment errors (GH-20076) by Pablo Galindo · 5 years ago
  81. ce21cfc bpo-40618: Disallow invalid targets in augassign and except clauses (GH-20083) by Lysandros Nikolaou · 5 years ago
  82. bcc3036 bpo-40619: Correctly handle error lines in programs without file mode (GH-20090) by Pablo Galindo · 5 years ago
  83. a15c9b3 bpo-40334: Always show the caret on SyntaxErrors (GH-20050) by Lysandros Nikolaou · 5 years ago
  84. 74ea6b5 bpo-40593: Improve syntax errors for invalid characters in source code. (GH-20033) by Serhiy Storchaka · 5 years ago
  85. 27c0d9b bpo-40334: produce specialized errors for invalid del targets (GH-19911) by Shantanu · 5 years ago
  86. 5b956ca bpo-40585: Normalize errors messages in codeop when comparing them (GH-20030) by Pablo Galindo · 5 years ago
  87. ac7a92c bpo-40334: Avoid collisions between parser variables and grammar variables (GH-19987) by Pablo Galindo · 5 years ago
  88. d10091a bpo-40502: Initialize n->n_col_offset (GH-19988) by Joannah Nanjekye · 5 years ago
  89. db9163c bpo-40555: Check for p->error_indicator in loop rules after the main loop is done (GH-19986) by Pablo Galindo · 5 years ago
  90. 4638c64 bpo-40334: Error message for invalid default args in function call (GH-19973) by Lysandros Nikolaou · 5 years ago
  91. 2f37c35 bpo-40334: Fix error location upon parsing an invalid string literal (GH-19962) by Lysandros Nikolaou · 5 years ago
  92. 470aac4 bpo-40334: Generate comments in the parser code to improve debugging (GH-19966) by Pablo Galindo · 5 years ago
  93. 99db2a1 bpo-40334: Allow trailing comma in parenthesised context managers (GH-19964) by Pablo Galindo · 5 years ago
  94. 999ec9a bpo-40334: Add type to the assignment rule in the grammar file (GH-19963) by Lysandros Nikolaou · 5 years ago
  95. 091951a bpo-40528: Improve and clear several aspects of the ASDL definition code for the AST (GH-19952) by Batuhan Taskaya · 5 years ago
  96. 846d8b2 bpo-40246: Revert reporting of invalid string prefixes (GH-19888) by Lysandros Nikolaou · 5 years ago
  97. e10e7c7 bpo-40334: Spacialized error message for invalid args after bare '*' (GH-19865) by Lysandros Nikolaou · 5 years ago
  98. c3f0014 bpo-40491: Fix typo in syntax error for numeric literals (GH-19893) by Shantanu · 5 years ago
  99. 603d354 bpo-40493: fix function type comment parsing (GH-19894) by Shantanu · 5 years ago
  100. 7f06af6 bpo-40334: Set error_indicator in _PyPegen_raise_error (GH-19887) by Lysandros Nikolaou · 5 years ago