1. eec8e61 bpo-43244: Remove the PyAST_Validate() function (GH-24911) by Victor Stinner · 3 years, 5 months ago
  2. fc980e0 bpo-43541: Fix PyEval_EvalCodeEx() regression (GH-24918) by Victor Stinner · 3 years, 5 months ago
  3. 6af528b bpo-43244: Fix test_peg_generators on Windows (GH-24913) by Victor Stinner · 3 years, 5 months ago
  4. e0b4aa0 bpo-39342: Expose X509_V_FLAG_ALLOW_PROXY_CERTS in ssl module (GH-18011) by Chris Burr · 3 years, 5 months ago
  5. e0bf70d bpo-43244: Fix test_peg_generator for PyAST_Validate() (GH-24912) by Victor Stinner · 3 years, 5 months ago
  6. 08fb8ac bpo-42128: Add 'missing :' syntax error message to match statements (GH-24733) by Pablo Galindo · 3 years, 5 months ago
  7. 526fdeb bpo-43244: Add pycore_ast.h header file (GH-24908) by Victor Stinner · 3 years, 5 months ago
  8. b4536e1 bpo-43244: Rename pycore_ast.h to pycore_ast_state.h (GH-24907) by Victor Stinner · 3 years, 5 months ago
  9. e272528 Remove unnecessary imports in the grammar parser (GH-24904) by Elisha Hollander · 3 years, 5 months ago
  10. 9976834 bpo-35883: Py_DecodeLocale() escapes invalid Unicode characters (GH-24843) by Victor Stinner · 3 years, 5 months ago
  11. 6086ae7 Add PEP 626 to what's new in 3.10. (#24892) by Mark Shannon · 3 years, 5 months ago
  12. a8ef457 bpo-43497: Emit SyntaxWarnings for assertions with tuple constants. (GH-24867) by tsukasa-au · 3 years, 5 months ago
  13. 1330338 bpo-43506: Doc: Update removal schedule for Py_UNICODE encoder APIs (GH-24885) by Inada Naoki · 3 years, 5 months ago
  14. 448801d bpo-41361: Optimized argument parsing for deque_rotate (GH-24796) by Dennis Sweeney · 3 years, 5 months ago
  15. d69ae75 Minor updates to the vector demo (GH-24853) by Raymond Hettinger · 3 years, 5 months ago
  16. 0269ce8 bpo-41933: Clarify wording for s * n in Common Sequence Operations (GH-22570) by Chavdar Yotov · 3 years, 5 months ago
  17. 0ab152c bpo-43285 Make ftplib not trust the PASV response. (GH-24838) by Gregory P. Smith · 3 years, 5 months ago
  18. 93d33b4 Fix typo in the word "spaghetti" (GH-24866) by Kazantcev Andrey · 3 years, 5 months ago
  19. c544093 Mark POP_TOP at end of expression statement as artificial, to conform to PEP 626. (GH-24860) by Mark Shannon · 3 years, 5 months ago
  20. 35d5068 bpo-43428: Improve documentation for importlib.metadata changes. (GH-24858) by Jason R. Coombs · 3 years, 5 months ago
  21. 5e29021 bpo-43199: Briefly explain why no goto (GH-24852) by Terry Jan Reedy · 3 years, 5 months ago
  22. bd2fa3c bpo-29982: Add "ignore_cleanup_errors" param to tempfile.TemporaryDirectory() (GH-24793) by CAM Gerlach · 3 years, 5 months ago
  23. d48848c bpo-39316: Make sure that attribute accesses and stores, including method calls, conform to PEP 626. (GH-24859) by Mark Shannon · 3 years, 5 months ago
  24. cd8dcbc bpo-43410: Fix crash in the parser when producing syntax errors when reading from stdin (GH-24763) by Pablo Galindo · 3 years, 5 months ago
  25. 9923df9 bpo-43245: Add keyword argument support to ChainMap.new_child() (GH-24788) by Kamil Turek · 3 years, 5 months ago
  26. 9c376bc bpo-43439: Wrapt the tuple in the audit events for the gc module (GH-24836) by Pablo Galindo · 3 years, 5 months ago
  27. f2b4536 Fix some minor errors in the docs (GH-24834) by Zackery Spytz · 3 years, 5 months ago
  28. f00e82f bpo-43427: Separte the method overview from the static method specifics. (GH-24787) by Raymond Hettinger · 3 years, 5 months ago
  29. f917efc bpo-43428: Sync with importlib_metadata 3.7. (GH-24782) by Jason R. Coombs · 3 years, 5 months ago
  30. 2256a28 bpo-43444: Move sqlite3 MODULE_NAME from setup.py to module.h (GH-24801) by Erlend Egeberg Aasland · 3 years, 5 months ago
  31. 75048c8 bpo-43441: Fix _PyType_ClearCache() for subinterpreters (GH-24822) by junyixie · 3 years, 5 months ago
  32. 5bd1059 bpo-40521: Make dtoa bigint free list per-interpreter (GH-24821) by junyixie · 3 years, 5 months ago
  33. d0a4454 Update link to Django's Context class. (#24805) by Mariusz Felisiak · 3 years, 5 months ago
  34. b6884ad Update client.py (GH-24827) by Géry Ogam · 3 years, 5 months ago
  35. 7591d94 bpo-27820: Fix AUTH LOGIN logic in smtplib.SMTP (GH-24118) by Pandu E POLUAN · 3 years, 5 months ago
  36. ba251c2 bpo-43356: Allow passing a signal number to interrupt_main() (GH-24755) by Antoine Pitrou · 3 years, 5 months ago
  37. b4fc44b bpo-43423 Fix IndexError in subprocess _communicate function (GH-24777) by Chris Griffith · 3 years, 5 months ago
  38. 87f649a bpo-43311: Create GIL autoTSSkey ealier (GH-24819) by Victor Stinner · 3 years, 5 months ago
  39. 9a9c11a bpo-43287: Use PEP 590 vectorcall to speed up filter() (GH-24611) by Dong-hee Na · 3 years, 5 months ago
  40. 0a30f0e Fix error in documentation for ast.match_case (GH-24807) by Adrian Freund · 3 years, 5 months ago
  41. 1fa17e8 bpo-43406: Fix test_signal.test_stress_modifying_handlers() (GH-24815) by Victor Stinner · 3 years, 5 months ago
  42. a9c03d7 bpo-43456: Remove _xxsubinterpreters from sys.stdlib_module_names (GH-24814) by Victor Stinner · 3 years, 5 months ago
  43. 57827f8 Fix typo in compile.c (GH-24812) by Ikko Ashimine · 3 years, 5 months ago
  44. 307745a bpo-43445: Add frozen modules to sys.stdlib_module_names (GH-24798) by Victor Stinner · 3 years, 5 months ago
  45. b4f9089 bpo-43439: Add audit hooks for gc functions (GH-24794) by Pablo Galindo · 3 years, 5 months ago
  46. 62a03cd bpo-43446: Fix markup in sqlite3 footnote (GH-24806) by Kamil Turek · 3 years, 5 months ago
  47. 31818e9 bpo-43440 : Enable SQLite R*Tree support for windows builds (GH-24797) by Erlend Egeberg Aasland · 3 years, 5 months ago
  48. 0d6bd1c bpo-3329: Fix typo in PyObjectArenaAllocator doc (GH-24795) by Victor Stinner · 3 years, 5 months ago
  49. 0554044 bpo-43415: Fix typo on dataclasses.rst (#24789) by Guilherme Martins Crocetti · 3 years, 5 months ago
  50. 9f672a5 bpo-37146: Move _PyEval_DeactivateOpCache() to the internal C API (GH-24786) by Victor Stinner · 3 years, 5 months ago
  51. 3abf6f0 bpo-14678: Update zipimport to support importlib.invalidate_caches() (GH-24159) by Desmond Cheong · 3 years, 5 months ago
  52. bbba282 bpo-43353: Document that logging.getLevelName() accepts string representation of logging level. (GH-24693) by Mariusz Felisiak · 3 years, 5 months ago
  53. c25910a bpo-43332: Buffer proxy connection setup packets before sending. (GH-24780) by Gregory P. Smith · 3 years, 5 months ago
  54. 8d00462 bpo-43319: Fixed the tutorial on venv about standard library (GH-24740) by cmhzc · 3 years, 5 months ago
  55. 8aabfa8 bpo-43405: Fix DeprecationWarnings in test_unicode (GH-24754) by Zackery Spytz · 3 years, 5 months ago
  56. 87ec26b bpo-43372: Use _freeze_importlib for regen-frozen. (GH-24759) by Neil Schemenauer · 3 years, 5 months ago
  57. 5eb7796 Put contextvars docs into the concurrency category (GH-24760) by Brett Cannon · 3 years, 5 months ago
  58. ff5f059 bpo-43407: Clarify comparisons of time.monotonic() et al results (GH-24757) by Alex Willmer · 3 years, 5 months ago
  59. 8e1b406 Make tracing info (bounds, and previous instruction offset) a bit more robust. (GH-24726) by Mark Shannon · 3 years, 5 months ago
  60. 68245b7 bpo-43406: Fix possible race condition where ``PyErr_CheckSignals`` tries to execute a non-Python signal handler (GH-24756) by Antoine Pitrou · 3 years, 5 months ago
  61. 02ac6f4 bpo-43390: Set SA_ONSTACK in PyOS_setsig (GH-24730) by Gregory P. Smith · 3 years, 5 months ago
  62. 2122e48 bpo-43400: Remove "easy to use" from mock docs (GH-24752) by Eddie Peters · 3 years, 5 months ago
  63. 6714825 bpo-42129: Add support for resources in namespaces (GH-24670) by Jason R. Coombs · 3 years, 5 months ago
  64. fbf75b9 Revert "bpo-42405: fix C extensions build on Windows ARM64 (GH-23399)" (#24753) by Jason R. Coombs · 3 years, 5 months ago
  65. b225d91 bpo-43391: Remove the broken Python 2.4 link from the comment (GH-24736) by Kamil Turek · 3 years, 5 months ago
  66. cb7bc76 bpo-42405: fix C extensions build on Windows ARM64 (GH-23399) by Adrian Vladu · 3 years, 5 months ago
  67. 40d1b83 bpo-43396: Normalise naming in sqlite3 doc examples (GH-24746) by Erlend Egeberg Aasland · 3 years, 5 months ago
  68. e161ec5 bpo-43369: sqlite3_column_{text,blob} failures now raise MemoryError (GH-24723) by Erlend Egeberg Aasland · 3 years, 5 months ago
  69. c61ec7e bpo-43394: Fix -Wstrict-prototypes warnings (GH-24737) by Brandt Bucher · 3 years, 5 months ago
  70. 131d551 bpo-43271: Re-enable ceval.c optimizations for Windows debug builds (GH-24739) by db3l · 3 years, 5 months ago
  71. 8747c1f Improve the description of the improvements in bpo-42202 (GH-24738) by Pablo Galindo · 3 years, 5 months ago
  72. 0632b10 bpo-42128: Add __match_args__ to structseq-based classes (GH-24732) by Pablo Galindo · 3 years, 5 months ago
  73. 9c79274 bpo-40701: tempfile mixes str and bytes in an inconsistent manner (GH-20442) by Eric L · 3 years, 5 months ago
  74. 62e3b63 Add an attribution to the Green Tree Snakes in the AST docs (GH-24727) by Pablo Galindo · 3 years, 5 months ago
  75. 44e580f bpo-43162: [Enum] update docs, renable doc tests (GH-24487) by Ethan Furman · 3 years, 5 months ago
  76. 04f6fbb bpo-43295: Fix error handling of datetime.strptime format string '%z' (GH-24627) by Noor Michael · 3 years, 5 months ago
  77. 3b4b2cf bpo-43368: Fix fetching empty bytes in sqlite3 (GH-24706) by Mariusz Felisiak · 3 years, 5 months ago
  78. 09605ad missing multiply symbol in the documentation (GH-24686) by Alperen Serkan Aksöz · 3 years, 5 months ago
  79. b04f1cb Doc: typo fix. (GH-24721) by Julien Palard · 3 years, 5 months ago
  80. 94894dd Pin test runner to Ubuntu 18 to un-break CI (#24715) by Brandt Bucher · 3 years, 5 months ago
  81. 727a68b Reorder contents of 3.10's What's New (#24687) by Ken Jin · 3 years, 5 months ago
  82. 3a87e56 bpo-42994: Add MIME types for opus, AAC, 3gpp and 3gpp2 (#24287) by Nathan Beals · 3 years, 5 months ago
  83. 132131b bpo-42782: Fail fast for permission errors in shutil.move() (GH-24001) by Winson Luk · 3 years, 5 months ago
  84. b36349a bpo-43049: Use io.IncrementalNewlineDecoder for doctest newline conversion (GH-24359) by Peter Donis · 3 years, 5 months ago
  85. 503627f bpo-43358: Fix bad free in assemble function (GH-24697) by Alex Henrie · 3 years, 5 months ago
  86. 25e244c bpo-39523: Use do-while loop pysqlite_cursor_executescript() (GH-18305) by Alex Henrie · 3 years, 5 months ago
  87. 5bfa945 bpo-41282: distutils: Fix stacklevel for DeprecationWarning (GH-24657) by Inada Naoki · 3 years, 5 months ago
  88. a347bc0 Doc: Improve library/json document. (GH-24390) by Adorilson Bezerra · 3 years, 5 months ago
  89. 72fcd14 bpo-42840: Document providing kwargs to type. (#24173) by Erik Soma · 3 years, 5 months ago
  90. dbfabcc Fixed linenumber missing when audit hook has an error (GH-24692) by Jules Lasne · 3 years, 5 months ago
  91. 7c25508 Post 3.10.0a6 by Pablo Galindo · 3 years, 5 months ago
  92. 4b7f4ff Merge tag 'v3.10.0a6' by Pablo Galindo · 3 years, 5 months ago
  93. f193874 Fix grammar in enum documentation. (GH-24689) by Mariatta Wijaya · 3 years, 5 months ago
  94. cc12888 Remove unused suspicious rule in the docs by Pablo Galindo · 3 years, 5 months ago
  95. 06c245f Python 3.10.0a6 by Pablo Galindo · 3 years, 5 months ago
  96. 8c9453b Fix typo in Mac/README.rst (#24682) by Ikko Ashimine · 3 years, 5 months ago
  97. f4d7d46 closes bpo-43349: Fix tuning(7) manpage hyperlink. (GH-24680) by Erlend Egeberg Aasland · 3 years, 5 months ago
  98. c994ffe bpo-11717: fix ssize_t redefinition error when targeting 32bit Windows app (GH-24479) by Jozef Grajciar · 3 years, 5 months ago
  99. 0242494 bpo-41837: Update macOS installer build to use OpenSSL 1.1.1j. (GH-24677) by Ned Deily · 3 years, 5 months ago
  100. 0608425 bpo-43103: Fix build failure with macOS framework builds. (GH-24676) by Ned Deily · 3 years, 5 months ago