1. c86a112 bpo-39573: Add Py_SET_REFCNT() function (GH-18389) by Victor Stinner · 6 years ago
  2. a93c51e bpo-39573: Use Py_REFCNT() macro (GH-18388) by Victor Stinner · 6 years ago
  3. 446463f bpo-39534: Doc: Clarify return in finally (GH-18324) by Julien Palard · 6 years ago
  4. 227af8e What's New in Python 3.9: sort improved modules (GH-18383) by Victor Stinner · 6 years ago
  5. 2844336 bpo-39542: Document limited C API changes (GH-18378) by Victor Stinner · 6 years ago
  6. 427c84f bpo-39274: Ensure Fraction.__bool__() returns a bool (GH-18017) by Sebastian Berg · 6 years ago
  7. 3f563ce bpo-39245: Make Vectorcall C API public (GH-17893) by Petr Viktorin · 6 years ago
  8. d2f9667 bpo-38823: Fix refleaks in _ast initialization error path (GH-17276) by Brandt Bucher · 6 years ago
  9. 54b4f14 bpo-38149: Call sys.audit() only once per call for glob.glob(). (GH-18360) by Serhiy Storchaka · 6 years ago
  10. ab0d892 bpo-39555: Fix distutils test to handle _d suffix on Windows debug build (GH-18357) by Steve Dower · 6 years ago
  11. 3d06953 bpo-39127: Make _Py_HashPointer's argument be const (GH-17690) by Andy Lester · 6 years ago
  12. 8b6f652 bpo-39559: Remove unused, undocumented argument from uuid.getnode (GH-18369) by Shantanu · 6 years ago
  13. 58f4e1a bpo-39542: Declare _Py_AddToAllObjects() in pycore_object.h (GH-18368) by Victor Stinner · 6 years ago
  14. b39fb8e bpo-39488: Skip test_largefile tests if not enough disk space (GH-18261) by Giampaolo Rodola · 6 years ago
  15. bf305cc Add PyInterpreterState.fs_codec.utf8 (GH-18367) by Victor Stinner · 6 years ago
  16. 0e4e735 bpo-39542: Define PyTypeObject earlier in object.h (GH-18366) by Victor Stinner · 6 years ago
  17. 509dd90 bpo-39542: Convert PyType_Check() to static inline function (GH-18364) by Victor Stinner · 6 years ago
  18. f58bd7c bpo-39542: Make PyObject_INIT() opaque in limited C API (GH-18363) by Victor Stinner · 6 years ago
  19. 0fa4f43 bpo-39542: Exclude trashcan from the limited C API (GH-18362) by Victor Stinner · 6 years ago
  20. f16433a bpo-39543: Remove unused _Py_Dealloc() macro (GH-18361) by Victor Stinner · 6 years ago
  21. 787b6d5 bpo-39505: delete the redundant '/' in $env:VIRTUAL_ENV (GH-18290) by schwarzichet · 6 years ago
  22. b439a71 bpo-39553: Delete HAVE_SXS protected code (GH-18356) by Zackery Spytz · 6 years ago
  23. cf5b109 bpo-39491: Merge PEP 593 (typing.Annotated) support (#18260) by Jakub Stasiak · 6 years ago
  24. 89ae20b bpo-39185 Add the d[etailed] and q[uiet] verbosity levels for msbuild (GH-17791) by Anthony Shaw · 6 years ago
  25. 95f6001 bpo-39184: Add audit events to command execution functions in os and pty modules (GH-17824) by Saiyang Gou · 6 years ago
  26. 40e547d bpo-39542: Make _Py_NewReference() opaque in C API (GH-18346) by Victor Stinner · 6 years ago
  27. 2545fa8 Fix MinGW library generation command (GH-17917) by Baljak · 6 years ago
  28. cb1c074 closes bpo-39510: Fix use-after-free in BufferedReader.readinto() (GH-18295) by Philipp Gesang · 6 years ago
  29. 9538bc9 bpo-39432: Implement PEP-489 algorithm for non-ascii "PyInit_*" symbol names in distutils (GH-18150) by Stefan Behnel · 6 years ago
  30. 850a4bd Restore PyObject_IsInstance() comment (GH-18345) by Victor Stinner · 6 years ago
  31. 4590f72 bpo-38076 Clear the interpreter state only after clearing module globals (GH-18039) by Eddie Elizondo · 6 years ago
  32. b6999e5 add whatsnew that was missed from 31d6de5aba009914efa8f0f3c3d7da35217578eb (#18344) by Chris Withers · 6 years ago
  33. 5807efd bpo-38558: Link to further docs from walrus operator mention in tutorial (GH-16973) by Adorilson Bezerra · 6 years ago
  34. 49932fe bpo-39542: Simplify _Py_NewReference() (GH-18332) by Victor Stinner · 6 years ago
  35. 24e5ad4 Fixes in sorting descriptions (GH-18317) by Stefan Pochmann · 6 years ago
  36. 4b52416 bpo-39542: Move object.h debug functions to internal C API (GH-18331) by Victor Stinner · 6 years ago
  37. c6e5c11 bpo-39489: Remove COUNT_ALLOCS special build (GH-18259) by Victor Stinner · 6 years ago
  38. 869c0c9 bpo-36051: Fix compiler warning. (GH-18325) by Inada Naoki · 6 years ago
  39. 032de73 bpo-39450 Stripped whitespace before parsing the docstring in TestCase.shortDescription (GH-18175) by Steve Cirelli · 6 years ago
  40. 0f2f35e bpo-39492: Fix a reference cycle between reducer_override and a Pickler instance (GH-18266) by Pierre Glaser · 6 years ago
  41. 339fd46 bpo-39349: Add *cancel_futures* to Executor.shutdown() (GH-18057) by Kyle Stanley · 6 years ago
  42. be8147b Fix 5-space indentation and trailing whitespace (GH-18311) by Mark Dickinson · 6 years ago
  43. 78c7183 bpo-39496: Remove redundant checks from _sqlite/cursor.c (GH-18270) by Alex Henrie · 6 years ago
  44. b94737a fixes typos in http.client documentation (#18300) by James Corbett · 6 years ago
  45. 90d9ba6 bpo-34793: Drop old-style context managers in asyncio.locks (GH-17533) by Andrew Svetlov · 6 years ago
  46. abb9a44 Update sum comment. (#18240) by Brandt Bucher · 6 years ago
  47. 4d96b46 bpo-39511: PyThreadState_Clear() calls on_delete (GH-18296) by Victor Stinner · 6 years ago
  48. 7dc1401 bpo-39511: Fix multiprocessing semlock_acquire() (GH-18298) by Victor Stinner · 6 years ago
  49. f03a8f8 bpo-37224: Improve test__xxsubinterpreters.DestroyTests (GH-18058) by Kyle Stanley · 6 years ago
  50. 58a4054 Doc: Fix s/pseudo random/pseudo-random/ (GH-18289) by Julien Palard · 6 years ago
  51. bfdeaa3 bpo-38792: Remove IDLE shell calltip before new prompt. (#17150) by Zackery Spytz · 6 years ago
  52. 46874c2 bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254) by Hai Shi · 6 years ago
  53. c232c91 bpo-39502: Skip test_zipfile.test_add_file_after_2107() on AIX (GH-18282) by Victor Stinner · 6 years ago
  54. 8d49f7c bpo-39434: Improve float __floordiv__ performance and error message (GH-18147) by Dong-hee Na · 6 years ago
  55. 2a4903f bpo-38631: Add _Py_NO_RETURN to functions calling Py_FatalError() (GH-18278) by Victor Stinner · 6 years ago
  56. 17c68b8 bpo-38631: Replace Py_FatalError() with assert() in ceval.c (GH-18279) by Victor Stinner · 6 years ago
  57. ec3c99c bpo-38631: Avoid Py_FatalError() in unicodeobject.c (GH-18281) by Victor Stinner · 6 years ago
  58. 38c878b bpo-39424: Use assertRaisesRegex instead of assertRaisesRegexp. (GH-18277) by damani42 · 6 years ago
  59. 1f44e77 bpo-39497: Remove unused variable from pysqlite_cursor_executescript (GH-18271) by Alex Henrie · 6 years ago
  60. c38fd0d bpo-39353: binascii.crc_hqx() is no longer deprecated (GH-18276) by Victor Stinner · 6 years ago
  61. 2bf127d bpo-38631: Replace tp_new_wrapper() fatal error with SystemError (GH-18262) by Victor Stinner · 6 years ago
  62. 7a1f6c2 bpo-38631: Avoid Py_FatalError() in init_slotdefs() (GH-18263) by Victor Stinner · 6 years ago
  63. 5eb8bff bpo-38631: Replace Py_FatalError() with _PyObject_ASSERT_FAILED_MSG() (GH-18258) by Victor Stinner · 6 years ago
  64. 188bb5b bpo-39494: Remove extra null terminators from kwlist vars (GH-18267) by Alex Henrie · 6 years ago
  65. 2e6569b bpo-39493: Fix definition of IO.closed in typing.py (#18265) by Shantanu · 6 years ago
  66. d47d0c8 Improve grammar in the import system reference documentation (GH-18209) by Bonifacio de Oliveira · 6 years ago
  67. 5428f48 Remove deadcode in _Py_inc_count() (GH-18257) by Victor Stinner · 6 years ago
  68. db5e86a Get mock coverage back to 100% (GH-18228) by Chris Withers · 6 years ago
  69. a327677 bpo-39485: fix corner-case in method-detection of mock (GH-18252) by Carl Friedrich Bolz-Tereick · 6 years ago
  70. 3cb49b6 bpo-39460: Fix test_zipfile.test_add_file_after_2107() (GH-18247) by Victor Stinner · 6 years ago
  71. 35eac45 Doc: Fix external links to functional programming tutorial. (GH-18249) by Julien Palard · 6 years ago
  72. e1e8000 bpo-39153: Clarify C API *SetItem refcounting semantics (GH-18220) by Joannah Nanjekye · 6 years ago
  73. d07d9f4 bpo-36051: Drop GIL during large bytes.join() (GH-17757) by Bruce Merry · 6 years ago
  74. 6a65eba bpo-39401: Avoid unsafe DLL load on Windows 7 and earlier (GH-18231) by Steve Dower · 6 years ago
  75. 0cd5bff bpo-39459: include missing test files in windows installer by Dino Viehland · 6 years ago
  76. aabdeb7 bpo-38960: DTrace build fix for FreeBSD. (GH-17451) by David Carlier · 6 years ago
  77. 2cca8ef bpo-36350: inspect: Replace OrderedDict with dict. (GH-12412) by Rémi Lapeyre · 6 years ago
  78. 0be3246 bpo-39439: Fix multiprocessing spawn path in a venv on Windows (GH-18158) by Adam Meily · 6 years ago
  79. 148610d bpo-39287: Doc: Add UTF-8 mode section in using/windows. (GH-17935) by Inada Naoki · 6 years ago
  80. 13c1c35 bpo-39393: Misleading error message on dependent DLL resolution failure (GH-18093) by Zackery Spytz · 6 years ago
  81. c45a2aa bpo-38883: Don't use POSIX `$HOME` in `pathlib.Path.home/expanduser` on Windows (GH-17961) by Christoph Reiter · 6 years ago
  82. 61f4db8 bpo-38644: Pass tstate in ceval.c (GH-18222) by Victor Stinner · 6 years ago
  83. 01bf219 bpo-36018: Minor fixes to the NormalDist() examples and recipes. (GH-18226) by Raymond Hettinger · 6 years ago
  84. 884eb89 bpo-39205: Tests that highlight a hang on ProcessPoolExecutor shutdown (#18221) by Brian Quinlan · 6 years ago
  85. 2824c45 bpo-39392: Turtle overlap fill depends on OS (#18223) by Terry Jan Reedy · 6 years ago
  86. a278313 bpo-38631: Avoid Py_FatalError() in PyCode_New() (GH-18215) by Victor Stinner · 6 years ago
  87. d3a1de2 bpo-38631: Avoid Py_FatalError() in _PyCodecRegistry_Init() (GH-18217) by Victor Stinner · 6 years ago
  88. dd023ad bpo-30780: Add IDLE configdialog tests (#3592) by Cheryl Sabella · 6 years ago
  89. 2528a6c Add test.test_import.data.unwritable package to makefile (#18211) by Dino Viehland · 6 years ago
  90. 47ee8a6 bpo-38631: Avoid Py_FatalError() in _memory_release() (GH-18214) by Victor Stinner · 6 years ago
  91. a94c6b6 bpo-38631: Avoid Py_FatalError() in PyModule_Create2() (GH-18212) by Victor Stinner · 6 years ago
  92. 4a46adc bpo-39459: test.pythoninfo logs effective uid/gid (GH-18203) by Victor Stinner · 6 years ago
  93. 9e1ed51 bpo-39453: Add testcase for bpo-39453 (GH-18202) by Dong-hee Na · 6 years ago
  94. 7023288 Ignore NEWS snippets in code coverage stats (GH-18194) by Nick Coghlan · 6 years ago
  95. 4dbf2d8 bpo-39453: Make list.__contains__ hold strong references to avoid crashes (GH-18181) by Dong-hee Na · 6 years ago
  96. a46575a Clarify and fix assertions that mocks have not been awaited (GH-18196) by Chris Withers · 6 years ago
  97. c7dd3c7 Use relative imports in mock and its tests to help backporting (GH-18197) by Chris Withers · 6 years ago
  98. 997443c Fix so that test.test_distutils can be executed by unittest and not just regrtest (GH-13480) by Toshio Kuratomi · 6 years ago
  99. 8a4cd70 bpo-39320: Handle unpacking of **values in compiler (GH-18141) by Mark Shannon · 6 years ago
  100. 72b1004 bpo-25597: Ensure wraps' return value is used for magic methods in MagicMock (#16029) by Karthikeyan Singaravelan · 6 years ago