1. 4267c98 bpo-38112: compileall: Skip long path path on Windows if the path can't be created (GH-16414) by Petr Viktorin · 5 years ago
  2. a741457 bpo-38244: [Documentation] Fix unreliable link to sever in ftplib.rst (#16319) by Prateek Nayak · 5 years ago
  3. 1ad7be2 bpo-38130: Fix error in explaining when an exception is re-raised (GH-16016) by Mohammad Dehghan · 5 years ago
  4. 6a10d59 Doc: Several fixes and improvements for 3.9 whatsnew (GH-16375) by Kyle Stanley · 5 years ago
  5. 5d326ab Doc: Use the `with` statement in the first example of the ftplib doc. (GH-16271) by Stéphane Wirtel · 5 years ago
  6. 8e7bb99 bpo-38112: Compileall improvements (GH-16012) by Lumír 'Frenzy' Balhar · 5 years ago
  7. 52b9408 closes bpo-38174: Update vendored expat library to 2.2.8. (GH-16346) by Benjamin Peterson · 5 years ago
  8. 49d99f0 bpo-38234: Fix test_embed.test_init_setpath_config() on FreeBSD (GH-16406) by Victor Stinner · 5 years ago
  9. 88feaec bpo-38234: Complete init config documentation (GH-16404) by Victor Stinner · 5 years ago
  10. 8bf39b6 bpo-38234: Add test_init_setpath_config() to test_embed (GH-16402) by Victor Stinner · 5 years ago
  11. df69e75 bpo-38142: Updated _hashopenssl.c to be PEP 384 compliant (#16071) by Christian Heimes · 5 years ago
  12. cc28ed2 bpo-22273: Removed temporary test skipping on PPC platforms. (GH-16399) by Vinay Sajip · 5 years ago
  13. bfd0c96 bpo-38271: encrypt private key test files with AES256 (GH-16385) by Christian Heimes · 5 years ago
  14. 543a395 bpo-38005: Remove support of string argument in InterpreterID(). (GH-16227) by Serhiy Storchaka · 5 years ago
  15. 15ccc4f bpo-38255: super() can search attributes as well as methods (GH-16368) by Raymond Hettinger · 5 years ago
  16. 00508a7 bpo-38234: Fix test_embed pathconfig tests (GH-16390) by Victor Stinner · 5 years ago
  17. c64a1a6 bpo-38270: Check for hash digest algorithms and avoid MD5 (GH-16382) by Christian Heimes · 5 years ago
  18. 417089e bpo-22273: Re-enabled ctypes test on ARM machines. (GH-16388) by Vinay Sajip · 5 years ago
  19. faca855 bpo-36046: posix_spawn() doesn't support uid/gid (GH-16384) by Victor Stinner · 5 years ago
  20. 1dc1acb bpo-37064: Add option -a to pathfix.py tool (GH-15717) by PatrikKopkan · 5 years ago
  21. 468f8a6 bpo-38140: Document offsets in PyMemberDef (GH-16354) by Petr Viktorin · 5 years ago
  22. edad4d8 bpo-38248: Fix inconsistent immediate asyncio.Task cancellation (GH-16330) by Yury Selivanov · 5 years ago
  23. c64af8f Changed conditions for ctypes array-in-struct handling. (GH-16381) by Vinay Sajip · 5 years ago
  24. 17deb16 bpo-38260: Add Docs on asyncio.run (GH-16337) by Emmanuel Arias · 5 years ago
  25. 57dc7d5 bpo-22273: Disabled tests while investigating buildbot failures on ARM7L/PPC64. (GH-16377) by Vinay Sajip · 5 years ago
  26. f163aea bpo-38219: Optimize dict creating and updating by a dict. (GH-16268) by Serhiy Storchaka · 5 years ago
  27. ad7736f bpo-38265: Update os.pread to accept the length type as Py_ssize_t. (GH-16359) by Dong-hee Na · 5 years ago
  28. 12f209e bpo-22273: Update ctypes to correctly handle arrays in small structur… (GH-15839) by Vinay Sajip · 5 years ago
  29. 221fd84 bpo-38234: Cleanup getpath.c (GH-16367) by Victor Stinner · 5 years ago
  30. 52ad33a bpo-38234: test_embed: test pyvenv.cfg and pybuilddir.txt (GH-16366) by Victor Stinner · 5 years ago
  31. 2180f6b bpo-36871: Avoid duplicated 'Actual:' in assertion message (GH-16361) by Samuel Freilich · 5 years ago
  32. b5a7a4f bpo-36871: Handle spec errors in assert_has_calls (GH-16005) by Samuel Freilich · 5 years ago
  33. bb6bf7d bpo-38234: Add tests for Python init path config (GH-16358) by Victor Stinner · 5 years ago
  34. 1ce152a bpo-38234: Py_SetPath() uses the program full path (GH-16357) by Victor Stinner · 5 years ago
  35. b0e1ae5 bpo-37123: multiprocessing test_mymanager() accepts SIGTERM (GH-16349) by Victor Stinner · 5 years ago
  36. 99799c7 bpo-38212: Increase MP test_queue_feeder_donot_stop_onexc() timeout (GH-16348) by Victor Stinner · 5 years ago
  37. ef04851 bpo-38136: Updates await_count and call_count to be different things (GH-16192) by Lisa Roach · 5 years ago
  38. 6f53d34 closes bpo-16637: libpython: construct integer object directly from gdbvalue (GH-15232) by Marc Hartmayer · 5 years ago
  39. 4346bad closes bpo-38253: Fix typo of Py_SET_ERANGE_IF_OVERFLOW in pyport.h. (GH-16230) by Hai Shi · 5 years ago
  40. 85ce0a7 bpo-38234: read_pth_file() now returns PyStatus (GH-16338) by Victor Stinner · 5 years ago
  41. 9c42f8c bpo-38234: Fix _PyConfig_InitPathConfig() (GH-16335) by Victor Stinner · 5 years ago
  42. 88e6447 bpo-38236: Fix init_dump_ascii_wstr() (GH-16333) by Victor Stinner · 5 years ago
  43. fcdb027 bpo-38236: Dump path config at first import error (GH-16300) by Victor Stinner · 5 years ago
  44. b4d0b39 bpo-38209: Simplify dataclasses.InitVar by using __class_getitem__(). (GH-16255) by Serhiy Storchaka · 5 years ago
  45. 1d094af Updated incorrect level-setting code to use setLevel(). (GH-16325) by Vinay Sajip · 5 years ago
  46. b104ecb Shorter docstring (GH-16322) by Raymond Hettinger · 5 years ago
  47. 030fe8e Doc: Add whatsnew entry for loop.shutdown_default_executor() (GH-16308) by Kyle Stanley · 5 years ago
  48. bb16fb2 Doc: Fix spelling errors of 'initial' in enum.py (GH-16314) by HongWeipeng · 5 years ago
  49. 7ce4bfa Minor code and comment cleanup (GH-16315) by Raymond Hettinger · 5 years ago
  50. 87d6cd3 bpo-38237: Make pow's arguments have more descriptive names and be keyword passable (GH-16302) by Ammar Askar · 5 years ago
  51. e267793 bpo-38234: Fix PyConfig_Read() when Py_SetPath() was called (GH-16298) by Victor Stinner · 5 years ago
  52. 77af229 Doc: Remove provisional note for asyncio.run() (GH-16310) by Kyle Stanley · 5 years ago
  53. c422167 bpo-38234: Remove _PyPathConfig.dll_path (GH-16307) by Victor Stinner · 5 years ago
  54. b154258 bpo-38205: Py_UNREACHABLE() calls Py_FatalError() (GH-16290) by Victor Stinner · 5 years ago
  55. bc2256e bpo-33694: Remove test_asyncio ProactorDatagramTransportTests (GH-16288) by Victor Stinner · 5 years ago
  56. 77abf23 bpo-6559: Update _posixsubprocess.fork_exec doc (GH-16283) by Orivej Desh · 5 years ago
  57. 9c2682e bpo-37937: Mention frame.f_trace in sys.settrace docs (GH-15439) by Ram Rachum · 5 years ago
  58. 062cfe3 bpo-37353: Updated parser note about source code compatibility(GH-14277) by Prateek Nayak · 5 years ago
  59. 8b03f94 bpo-38093: Correctly returns AsyncMock for async subclasses. (GH-15947) by Lisa Roach · 5 years ago
  60. 2702638 bpo-34002: Minor efficiency and clarity improvements in email package. (GH-7999) by Michael Selik · 5 years ago
  61. 3368f3c bpo-38140: Make dict and weakref offsets opaque for C heap types (#16076) by Eddie Elizondo · 5 years ago
  62. 079931d bpo-34037: test_asyncio uses shutdown_default_executor() (GH-16284) by Victor Stinner · 5 years ago
  63. b2dd2dd bpo-37531: Skip test_regrtest.test_multiprocessing_timeout() on all platforms (GH-16282) by Victor Stinner · 5 years ago
  64. 96b1c59 bpo-38155: Add __all__ to datetime module (GH-16203) by t k · 5 years ago
  65. 9fdc64c bpo-34037: Fix test_asyncio failure and add loop.shutdown_default_executor() (GH-15735) by Kyle Stanley · 5 years ago
  66. 3171d67 Doc: Clarify dict equality irrespective of ordering. (GH-16266) by toonarmycaptain · 5 years ago
  67. 9ab6038 Doc: Corrected syntax for return annotation (GH-16265) by Jason Plurad · 5 years ago
  68. 42acb7b bpo-35696: Simplify long_compare() (GH-16146) by HongWeipeng · 5 years ago
  69. d299b8b Fix _PyTraceMalloc_Fini() definition (GH-16259) by Victor Stinner · 5 years ago
  70. 0a963fb bpo-38203: faulthandler.dump_traceback_later() is always available (GH-16249) by Victor Stinner · 5 years ago
  71. da57599 bpo-38203: regrtest: put a 2 min timeout on Python exit (GH-16250) by Victor Stinner · 5 years ago
  72. 272d0d0 bpo-36546: No longer a need to make "data" positional only (GH-16252) by Raymond Hettinger · 5 years ago
  73. b9877cd bpo-37531: Skip test_regrtest.test_multiprocessing_timeout() on Windows (GH-16247) by Victor Stinner · 5 years ago
  74. 1ce16fb bpo-38070: Py_FatalError() logs runtime state (GH-16246) by Victor Stinner · 5 years ago
  75. d3b9041 bpo-38070: Add _PyRuntimeState.preinitializing (GH-16245) by Victor Stinner · 5 years ago
  76. b39afb7 bpo-38070: Enhance _PyObject_Dump() (GH-16243) by Victor Stinner · 5 years ago
  77. 8fa3e17 bpo-38070: _Py_DumpTraceback() writes <no Python frame> (GH-16244) by Victor Stinner · 5 years ago
  78. 8fc5839 bpo-38191: Turn warnings into errors in NamedTuple() and TypedDict(). (GH-16238) by Serhiy Storchaka · 5 years ago
  79. 2bf31cc bpo-38191: Accept arbitrary keyword names in NamedTuple() and TypedDict(). (GH-16222) by Serhiy Storchaka · 5 years ago
  80. b574813 bpo-37904: Edition on python tutorial - section 4 (GH-16169) by Diego Alberto Barriga Martínez · 5 years ago
  81. 6fbc924 bpo-38187: Fix reference leak in test_tools (GH-16233) by Pablo Galindo · 5 years ago
  82. c275312 bpo-38013: make async_generator_athrow object tolerant to throwing exceptions (GH-16070) by Andrew Svetlov · 5 years ago
  83. 5f5f11f bpo-37828: Fix default mock_name in unittest.mock.assert_called error (GH-16166) by Abraham Toriz Cruz · 5 years ago
  84. 219fb9d Doc: Fix grammar/spelling in ssl.VERIFY_CRL_CHECK_LEAF docs (GH-16221) by Jörn Heissler · 5 years ago
  85. 46b0b81 bpo-37531: regrtest main process uses shorter timeout (GH-16220) by Victor Stinner · 5 years ago
  86. 5d359cc bpo-38192: Fix remaining passing of "loop" in the protocol examples (GH-16202) by Hrvoje Nikšić · 5 years ago
  87. f669581 bpo-38185: Fixed case-insensitive string comparison in sqlite3.Row indexing. (GH-16190) by Serhiy Storchaka · 5 years ago
  88. dfd34a9 bpo-35379: When exiting IDLE, catch any AttributeError. (GH-16212) by Terry Jan Reedy · 5 years ago
  89. 63dedef Doc: Add list(dict) in stdtypes library (GH-16209) by Adorilson Bezerra · 5 years ago
  90. 0048afc bpo-38183: Test_idle ignores user config directory GH-16198) by Terry Jan Reedy · 5 years ago
  91. 81528ba bpo-28556: Update the opening note in typing docs (GH-16204) by Ivan Levkivskyi · 5 years ago
  92. 724f1a5 bpo-33936: Don't call obsolete init methods with OpenSSL 1.1.0+ (GH-16140) by Christian Heimes · 5 years ago
  93. 336b306 Doc: Fix Wikipedia link for functools.lru_cache (GH-16183) by amist · 5 years ago
  94. 8debfa5 bpo-38175: Fix a memory leak in comparison of sqlite3.Row objects. (GH-16155) by Serhiy Storchaka · 5 years ago
  95. a9187c3 bpo-38100: Fix spelling error in unittest.mock code (GH-16168) by marcoramirezmx · 5 years ago
  96. f18242b Doc: Add link of GNU Readline library to interpreter tutorial (GH-16152) by Adorilson Bezerra · 5 years ago
  97. 89b8933 bpo-38081: Add more non-fatal error codes for ntpath.realpath (GH-16156) by Steve Dower · 5 years ago
  98. 3ab73f6 bpo-38117: Update bundled Windows OpenSSL to 1.1.1d (GH-16184) by Steve Dower · 5 years ago
  99. b7af4e7 Doc: remove duplicate word in controlflow tutorial (GH-16163) by Adorilson Bezerra · 5 years ago
  100. 56a4514 Fix a possbile refleak in setint() of mmapmodule.c (GH-16136) by Hai Shi · 5 years ago