1. e232025 bpo-42923: Add Py_FatalError() test in test_capi (GH-24240) by Victor Stinner · 4 years, 7 months ago
  2. 998ae1f bpo-42931: randbytes missing from random.__all__ (GH-24219) by Setrak Balian · 4 years, 7 months ago
  3. ba876c4 bpo-42934: use TracebackException(compact=True) in unittest.TestResult (GH-24221) by Irit Katriel · 4 years, 7 months ago
  4. e56d54e Mark instructions at end of class scope as artificial. (GH-24222) by Mark Shannon · 4 years, 7 months ago
  5. 4c94d74 bpo-42877: add the 'compact' param to TracebackException's __init__ (#24179) by Irit Katriel · 4 years, 7 months ago
  6. e5fe509 bpo-42827: Fix crash on SyntaxError in multiline expressions (GH-24140) by Lysandros Nikolaou · 4 years, 7 months ago
  7. 9712358 Docs: Remove stray semicolon in init.rst (GH-23974) by Ken Jin · 4 years, 7 months ago
  8. 14cfa32 bpo-39273: Expose BUTTON5_* constants in the curses module if available (GH-17996) by Zackery Spytz · 4 years, 7 months ago
  9. a330365 bpo-40956: Fix sqlite3.Cursor.fetchmany() default value (GH-24214) by Erlend Egeberg Aasland · 4 years, 7 months ago
  10. 61d8c54 bpo-42924: Fix incorrect copy in bytearray_repeat (GH-24208) by Tobias Holl · 4 years, 7 months ago
  11. 1659ad1 Eliminate NOPs in extended blocks. (GH-24209) by Mark Shannon · 4 years, 7 months ago
  12. 3bd6035 bpo-42908: Mark cleanup code at end of try-except and with artificial (#24202) by Mark Shannon · 4 years, 7 months ago
  13. 2396614 bpo-1635741: Fix PyModule_AddObjectRef to use EXPORT_FUNC (GH-24205) by Dong-hee Na · 4 years, 7 months ago
  14. c314e60 bpo-42901: [Enum] move member creation to `__set_name__` (GH-24196) by Ethan Furman · 4 years, 7 months ago
  15. c47c78b bpo-37324: Remove ABC aliases from collections (GH-23754) by Hugo van Kemenade · 4 years, 7 months ago
  16. 6dfd173 bpo-42848: remove recursion from TracebackException (GH-24158) by Irit Katriel · 4 years, 7 months ago
  17. 0f66498 bpo-42874: Remove grep -qE options for Solaris 10 compatibility (GH-24200) by Paul Ganssle · 4 years, 7 months ago
  18. 4db8988 bpo-41994: Fix refcount issues in Python/import.c (GH-22632) by Serhiy Storchaka · 4 years, 7 months ago
  19. 11d13e8 bpo-42882: Add test_embed.test_unicode_id_init() (GH-24198) by Victor Stinner · 4 years, 7 months ago
  20. 44bf57a bpo-42882: _PyRuntimeState_Init() leaves unicode next_index unchanged (GH-24193) by Victor Stinner · 4 years, 7 months ago
  21. fb35fa4 bpo-42870: Document change in argparse help output. (GH-24190) by Tomáš Hrnčiar · 4 years, 7 months ago
  22. ace008c Fix various ParamSpec errors in typing (GH-24176) by Ken Jin · 4 years, 7 months ago
  23. 81f87bb bpo-33065: Fix problem debugging user classes with __repr__ method (GH-24183) by Terry Jan Reedy · 4 years, 7 months ago
  24. d16f617 bpo-24464: Fix sqlite3.enable_shared_cache() deprecation wrapper (GH-24170) by Erlend Egeberg Aasland · 4 years, 7 months ago
  25. 0e2a0f7 bpo-42802: Remove distutils bdist_wininst command (GH-24043) by Victor Stinner · 4 years, 7 months ago
  26. 68e1f25 Fix a typo in docs for typing.Concatenate (#24169) by Johan Dahlin · 4 years, 7 months ago
  27. 11ef53a bpo-42866: Add traverse func to _multibytecodec.MultibyteCodec (GH-24166) by Victor Stinner · 4 years, 7 months ago
  28. e542d41 bpo-42866: Fix refleak in CJK getcodec() (GH-24165) by Victor Stinner · 4 years, 7 months ago
  29. 07f2cee bpo-42846: Convert CJK codec extensions to multiphase init (GH-24157) by Victor Stinner · 4 years, 7 months ago
  30. 07dcd86 bpo-42860: Remove type error from grammar (GH-24156) by Lysandros Nikolaou · 4 years, 7 months ago
  31. a581a86 bpo-42851: [Enum] remove brittle __init_subclass__ support (GH-24154) by Ethan Furman · 4 years, 7 months ago
  32. 8643345 Update frame.f_lineno before any call to the (C) tracing function. (GH-24150) by Mark Shannon · 4 years, 7 months ago
  33. 5c30145 bpo-42783: Documentation for asyncio.sleep(0) (#24002) by Simon Willison · 4 years, 7 months ago
  34. deab1e5 bpo-42847: Normalise Lib/sqlite3/test/* file encodings (GH-24147) by Erlend Egeberg Aasland · 4 years, 7 months ago
  35. 849e339 bpo-40823: Use loadTestsFromTestCase() iso. makeSuite() in sqlite3 tests (GH-20538) by Erlend Egeberg Aasland · 4 years, 7 months ago
  36. 1ab0459 bpo-41798: Allocate the _datetime.datetime_CAPI on the heap memory (GH-24096) by Hai Shi · 4 years, 7 months ago
  37. f22b7ca bpo-41798: Allocate _socket module C API on the heap (GH-24126) by Erlend Egeberg Aasland · 4 years, 7 months ago
  38. ff8458b bpo-42811: Update importlib.utils.resolve_name() docs to use __spec__.parent (GH-24100) by Yair Frid · 4 years, 7 months ago
  39. fe9f446 bpo-41798: Allocate _decimal extension module C API on the heap (GH-24117) by Erlend Egeberg Aasland · 4 years, 7 months ago
  40. 315fc52 bpo-42528: Improve the docs of most Py*_Check{,Exact} API calls (GH-23602) by Antonio Cuni · 4 years, 7 months ago
  41. 1a9f51e bpo-14014: Clarify StreamWriter.reset() documentation (GH-13716) by Berker Peksag · 4 years, 7 months ago
  42. 203b249 bpo-40959: Remove unused declarations from sqlite3 headers (GH-20828) by Erlend Egeberg Aasland · 4 years, 7 months ago
  43. ddb5e11 bpo-24464: Deprecate sqlite3.enable_shared_cache (GH-24008) by Erlend Egeberg Aasland · 4 years, 7 months ago
  44. f9949f8 bpo-38413: Remove outdated section about multithreading in sqlite3 (GH-23159) by Vladimir · 4 years, 7 months ago
  45. cf0b239 bpo-40810: Require SQLite 3.7.15 (GH-24106) by Erlend Egeberg Aasland · 4 years, 7 months ago
  46. c7f8d3c bpo-40956: Convert _sqlite3.Cursor to Argument Clinic (GH-24007) by Erlend Egeberg Aasland · 4 years, 7 months ago
  47. dd74c01 bpo-42584: Update Windows installer to use SQLite 3.34.0 (GH-23675) by Erlend Egeberg Aasland · 4 years, 7 months ago
  48. afb7144 bpo-41837: Updated Windows installer to include OpenSSL 1.1.1i (GH-24125) by Steve Dower · 4 years, 7 months ago
  49. ee9f98d bpo-42823: Fix frame lineno when frame.f_trace is set (GH-24099) by Mark Shannon · 4 years, 7 months ago
  50. e40e2a2 bpo-32631: IDLE: Enable zzdummy example extension module (GH-14491) by Cheryl Sabella · 4 years, 7 months ago
  51. 59f9b4e bpo-42681: Fix test_curses failures related to color pairs (GH-24089) by Serhiy Storchaka · 4 years, 7 months ago
  52. 27f9daf bpo-40636: Remove overly-strict zip pickling tests (GH-24109) by Brandt Bucher · 4 years, 7 months ago
  53. cde988e Fix broken NEWS markup (GH-24110) by Brandt Bucher · 4 years, 7 months ago
  54. f7f0ed5 bpo-40810: Fix CheckTraceCallbackContent for SQLite pre 3.7.15 (GH-20530) by Erlend Egeberg Aasland · 4 years, 7 months ago
  55. 0b858cd bpo-1635741: Convert _multibytecodec to multi-phase init (GH-24095) by Erlend Egeberg Aasland · 4 years, 7 months ago
  56. 958acd2 Post 3.10.0a4 by Pablo Galindo · 4 years, 7 months ago
  57. ef2d371 Merge tag 'v3.10.0a4' by Pablo Galindo · 4 years, 7 months ago
  58. af4cd16 Do not remove x bit from published directories (GH-24101) by Steve Dower · 4 years, 7 months ago
  59. 127dde5 bpo-42810: Mark jumps at end of if and try statements as artificial. (GH-24091) by Mark Shannon · 4 years, 7 months ago
  60. 445f7f5 Python 3.10.0a4 by Pablo Galindo · 4 years, 7 months ago
  61. de833b6 Fix 'make suspicious' for the itertools module (GH-24097) by Pablo Galindo · 4 years, 7 months ago
  62. c8a87ad bpo-1635741: Port pyexpat to multi-phase init (PEP 489) (GH-22222) by Mohamed Koubaa · 4 years, 7 months ago
  63. bf06b20 Delete the now unused c_do_not_emit_bytecode field. (#24094) by Mark Shannon · 4 years, 7 months ago
  64. df21f50 bpo-42692: fix __builtin_available check on older compilers (GH-23873) by Joshua Root · 4 years, 7 months ago
  65. b6fc0c4 bpo-42789: Enable using /dev/tty in test_curses. (GH-24085) by Serhiy Storchaka · 4 years, 7 months ago
  66. 0f3b96b Update Sphinx version for macOS installer build. (GH-24082) by Ned Deily · 4 years, 7 months ago
  67. a38e04b bpo-42361: Update macOS installer build to use Tcl/Tk 8.6.11 (GH-24081) by Ned Deily · 4 years, 7 months ago
  68. 14097a2 bpo-41837: Update macOS installer build to use OpenSSL 1.1.1i. (GH-24080) by Ned Deily · 4 years, 7 months ago
  69. c94ee13 bpo-42584: Update macOS installer to use SQLite 3.34.0 (GH-23674) by Erlend Egeberg Aasland · 4 years, 7 months ago
  70. 1470edd bpo-42681: Fix range checks for color and pair numbers in curses (GH-23874) by Serhiy Storchaka · 4 years, 7 months ago
  71. 7c83eaa bpo-41798: pyexpat: Allocate the expat_CAPI on the heap memory (GH-24061) by Hai Shi · 4 years, 7 months ago
  72. b8eb376 bpo-40077: Add traverse/clear/free to arraymodule (GH-24066) by Erlend Egeberg Aasland · 4 years, 7 months ago
  73. 6613676 bpo-38308: Fix the "versionchanged" for the *weights* of harmonic_mean() (GH-23919) by Zackery Spytz · 4 years, 7 months ago
  74. 5d3553b bpo-42814: Fix undefined behavior in Objects/genericaliasobject.c (GH-24073) by Zackery Spytz · 4 years, 7 months ago
  75. 9e8fe19 bpo-42093: Tweak the what's new message about the new LOAD_ATTR opcode cache (GH-24070) by Pablo Galindo · 4 years, 7 months ago
  76. bd2728b bpo-42806: Fix ast locations of f-strings inside parentheses (GH-24067) by Pablo Galindo · 4 years, 7 months ago
  77. 2ea320d bpo-40631: Disallow single parenthesized star target (GH-24027) by Lysandros Nikolaou · 4 years, 7 months ago
  78. 8f8de73 No need to test "istep==1" twice. (GH-24064) by Raymond Hettinger · 4 years, 7 months ago
  79. 768fa14 bpo-42772: Step argument ignored when stop is None. (GH-24018) by Raymond Hettinger · 4 years, 7 months ago
  80. 607501a bpo-42789: Don't skip curses tests on non-tty. (GH-24009) by Serhiy Storchaka · 4 years, 7 months ago
  81. a25011b bpo-42809: Improve pickle tests for recursive data. (GH-24060) by Serhiy Storchaka · 4 years, 7 months ago
  82. 75bf107 bpo-40077: Convert arraymodule to use heap types and establish module state (GH-23124) by Erlend Egeberg Aasland · 4 years, 7 months ago
  83. 49cd68f bpo-42195: Disallow isinstance/issubclass for subclasses of genericaliases in Union (GH-24059) by Ken Jin · 4 years, 7 months ago
  84. d914283 handle empty string in variable executable in platform.libc_ver() (#23140) by Kurochan · 4 years, 7 months ago
  85. 11276cd bpo-41559: Documentation for PEP 612 (GH-24000) by Ken Jin · 4 years, 7 months ago
  86. 3bf0532 bpo-42756: Configure LMTP Unix-domain socket to use global default timeout when timeout not provided (GH-23969) by Ross · 4 years, 7 months ago
  87. de6f20a Bring Python into the new year. (GH-24036) by Dong-hee Na · 4 years, 7 months ago
  88. ec31653 bpo-42794: Update test_nntplib to use offical group name for testing (GH-24037) by Dong-hee Na · 4 years, 7 months ago
  89. c8a7b8f bpo-42781: Document the mechanics of cached_property from a user viewpoint (GH-24031) by Raymond Hettinger · 4 years, 7 months ago
  90. b5711c9 bpo-37193: Remove thread objects which finished process its request (GH-23127) by Jason R. Coombs · 4 years, 7 months ago
  91. 3631d6d Fixes a typo in importlib.metadata. (#23921) by Tao He · 4 years, 7 months ago
  92. a6fd0f4 bpo-42163, bpo-42189, bpo-42659: Support uname_tuple._replace (for all but processor) (#23010) by Jason R. Coombs · 4 years, 7 months ago
  93. dfdca85 bpo-42382: In importlib.metadata, `EntryPoint` objects now expose `dist` (#23758) by Jason R. Coombs · 4 years, 7 months ago
  94. f4936ad bpo-42393: Raise OverflowError iso. DeprecationWarning on overflow in socket.ntohs and socket.htons (GH-23980) by Erlend Egeberg Aasland · 4 years, 7 months ago
  95. 9655434 bpo-39068: Fix race condition in base64 (GH-17627) by Brandon Stansbury · 4 years, 7 months ago
  96. f421bfc Minor improvements to the convolve() recipe (GH-24012) by Raymond Hettinger · 4 years, 8 months ago
  97. 4ac923f bpo-42773: fix tests not being run on pushes (GH-24004) by Filipe Laíns · 4 years, 8 months ago
  98. 277ce30 bpo-27640: Add --disable-test-modules configure option (GH-23886) by pxinwr · 4 years, 8 months ago
  99. c56387f bpo-27794: Add `name` attribute to `property` class (GH-23967) by Yurii Karabas · 4 years, 8 months ago
  100. ba0e49a bpo-40137: Fix refleak in _functools_exec() (GH-24006) by Victor Stinner · 4 years, 8 months ago