1. 34214de v3.8.0rc1 by Łukasz Langa · 4 years, 10 months ago
  2. 938c00c bpo-38319: Fix shutil._fastcopy_sendfile(): set sendfile() max block size (GH-16491) (#16506) by Miss Islington (bot) · 4 years, 10 months ago
  3. bdace21 bpo-38304: Remove PyConfig.struct_size (GH-16500) by Victor Stinner · 4 years, 10 months ago
  4. 92ca515 Clear weakrefs in garbage found by the GC (GH-16495) (#16499) by Miss Islington (bot) · 4 years, 10 months ago
  5. 2f87a7d bpo-30773: Fix ag_running; prohibit running athrow/asend/aclose in parallel (GH-7468) (#16486) by Miss Islington (bot) · 4 years, 10 months ago
  6. 1c19d65 bpo-38242: Revert "bpo-36889: Merge asyncio streams (GH-13251)" (#16482) (#16485) by Yury Selivanov · 4 years, 10 months ago
  7. 21f24ea [3.8] bpo-38163: Child mocks detect their type as sync or async (GH-16471) (GH-16484) by Lisa Roach · 4 years, 10 months ago
  8. 36e7e4a bpo-38161: Removes _AwaitEvent from AsyncMock. (GH-16443) (GH-16481) by Miss Islington (bot) · 4 years, 10 months ago
  9. b76ab35 bpo-38108: Makes mock objects inherit from Base (GH-16060) (GH-16470) by Miss Islington (bot) · 4 years, 10 months ago
  10. c9ed9e6 bpo-38317: Fix PyConfig.warnoptions priority (GH-16478) by Miss Islington (bot) · 4 years, 10 months ago
  11. 19cd595 bpo-38019: correctly handle pause/resume reading of closed asyncio unix pipe (GH-16472) by Miss Islington (bot) · 4 years, 10 months ago
  12. 36c6fa9 bpo-38115: Deal with invalid bytecode offsets in lnotab (GH-16079) (GH-16464) by Gregory P. Smith · 4 years, 10 months ago
  13. 8f478b4 bpo-38216, bpo-36274: Allow subclasses to separately override validation and encoding behavior (GH-16448) by Miss Islington (bot) · 4 years, 10 months ago
  14. 6e12838 bpo-38304: Add PyConfig.struct_size (GH-16451) (GH-16453) by Victor Stinner · 4 years, 10 months ago
  15. 8750bce bpo-38301: In Solaris family, we must be sure to use '-D_REENTRANT' (GH-16446) (#16449) by Miss Islington (bot) · 4 years, 10 months ago
  16. 52bdd41 [3.8] bpo-38136: Updates await_count and call_count to be different things (GH-16192) (GH-16431) by Lisa Roach · 4 years, 10 months ago
  17. 6447b9f bpo-38243, xmlrpc.server: Escape the server_title (GH-16373) by Miss Islington (bot) · 4 years, 10 months ago
  18. 1931132 [3.8] bpo-38275: Skip ssl tests for disabled versions (GH-16386) (GH-16425) by Christian Heimes · 4 years, 10 months ago
  19. c989340 bpo-38239: Fix test_gdb for Link Time Optimization (LTO) (GH-16422) by Miss Islington (bot) · 4 years, 10 months ago
  20. 96c8475 [3.8] bpo-38234: Backport init path config changes from master (GH-16423) by Victor Stinner · 4 years, 10 months ago
  21. d75bf44 [3.8] closes bpo-38174: Update vendored expat library to 2.2.8. (GH-16409) by Benjamin Peterson · 4 years, 10 months ago
  22. 4267e8f bpo-38271: encrypt private key test files with AES256 (GH-16385) by Miss Islington (bot) · 4 years, 10 months ago
  23. 66cd041 [3.8] bpo-38270: Check for hash digest algorithms and avoid MD5 (GH-16382) (GH-16393) by Miss Islington (bot) · 4 years, 10 months ago
  24. e4be8c9 bpo-36210: correct logic in setup.py for optional extensions for AIX (GH-12202) (GH-16376) by Michael Felt · 4 years, 10 months ago
  25. c71c54c bpo-37064: Add -k and -a options to pathfix.py tool (GH-16387) by Victor Stinner · 4 years, 10 months ago
  26. 16cec13 bpo-38248: Fix inconsistent immediate asyncio.Task cancellation (GH-16330) (GH-16383) by Miss Islington (bot) · 4 years, 10 months ago
  27. 1a17a05 [3.8] bpo-36871: Handle spec errors in assert_has_calls (GH-16005) (GH-16364) by Miss Islington (bot) · 4 years, 10 months ago
  28. 081641f bpo-37123: multiprocessing test_mymanager() accepts SIGTERM (GH-16349) by Miss Islington (bot) · 4 years, 10 months ago
  29. fea9ca1 bpo-38212: Increase MP test_queue_feeder_donot_stop_onexc() timeout (GH-16348) by Miss Islington (bot) · 4 years, 10 months ago
  30. 3f5409a bpo-38234: Fix _PyConfig_InitPathConfig() (GH-16335) (GH-16336) by Victor Stinner · 4 years, 10 months ago
  31. c5c6425 bpo-38236: Dump path config at first import error (GH-16300) (GH-16332) by Victor Stinner · 4 years, 10 months ago
  32. 37bc935 bpo-38237: Let pow() support keyword arguments (GH-16302) (GH-16320) by Miss Islington (bot) · 4 years, 10 months ago
  33. 865bb68 [3.8] bpo-38093: Correctly returns AsyncMock for async subclasses. (GH-15947) (GH-16299) by Lisa Roach · 4 years, 10 months ago
  34. 9f3dcf8 [3.8] bpo-38234: Fix PyConfig_Read() when Py_SetPath() was called (GH-16298) (GH-16313) by Victor Stinner · 4 years, 10 months ago
  35. 245d439 bpo-38205: Py_UNREACHABLE() calls Py_FatalError() (GH-16290) (GH-16306) by Victor Stinner · 4 years, 10 months ago
  36. c410390 bpo-37937: Mention frame.f_trace in sys.settrace docs (GH-15439) by Miss Islington (bot) · 4 years, 10 months ago
  37. 54ba5f1 bpo-38191: Accept arbitrary keyword names in NamedTuple() and TypedDict(). (GH-16222) by Miss Islington (bot) · 4 years, 10 months ago
  38. 3c1786f bpo-38013: make async_generator_athrow object tolerant to throwing exceptions (GH-16070) by Miss Islington (bot) · 4 years, 10 months ago
  39. f668d2b bpo-37828: Fix default mock_name in unittest.mock.assert_called error (GH-16166) by Miss Islington (bot) · 4 years, 10 months ago
  40. d8d653c bpo-38185: Fixed case-insensitive string comparison in sqlite3.Row indexing. (GH-16190) by Miss Islington (bot) · 4 years, 10 months ago
  41. 73ccc33 bpo-35379: When exiting IDLE, catch any AttributeError. (GH-16212) by Miss Islington (bot) · 4 years, 10 months ago
  42. f04299d bpo-38175: Fix a memory leak in comparison of sqlite3.Row objects. (GH-16155) by Miss Islington (bot) · 4 years, 10 months ago
  43. ad845be bpo-38183: Test_idle ignores user config directory GH-16198) by Miss Islington (bot) · 4 years, 10 months ago
  44. 1ecc75a bpo-33936: Don't call obsolete init methods with OpenSSL 1.1.0+ (GH-16140) by Miss Islington (bot) · 4 years, 10 months ago
  45. 26729ce bpo-38117: Update bundled Windows OpenSSL to 1.1.1d (GH-16184) by Miss Islington (bot) · 4 years, 10 months ago
  46. e8d7fa2 [3.8] bpo-38153: Normalize hashlib algorithm names (GH-16083) (GH-16144) by Christian Heimes · 4 years, 10 months ago
  47. 346b7c9 bpo-38117: Updated OpenSSL to 1.1.1d in macOS installer. (GH-16170) by Miss Islington (bot) · 4 years, 10 months ago
  48. f37a983 [3.8] bpo-38005: Fixed comparing and creating of InterpreterID and ChannelID. (GH-15652) (GH-16145) by Serhiy Storchaka · 4 years, 10 months ago
  49. d322abb [3.8] bpo-37206: Unrepresentable default values no longer represented as None. (GH-13933) (GH-16141) by Serhiy Storchaka · 4 years, 10 months ago
  50. e91edfe bpo-37953: Fix ForwardRef hash and equality checks (GH-15400) by Miss Islington (bot) · 4 years, 10 months ago
  51. cf25765 bpo-34706: Preserve subclassing in inspect.Signature.from_callable (GH-16108) (GH-16113) by Miss Islington (bot) · 4 years, 10 months ago
  52. 436b429 bpo-38092: Reduce overhead when using multiprocessing in a Windows virtual environment (GH-16098) by Miss Islington (bot) · 4 years, 10 months ago
  53. 590ed09 bpo-25068: urllib.request.ProxyHandler now lowercases the dict keys (GH-13489) by Miss Islington (bot) · 4 years, 10 months ago
  54. bd2e7cc closes bpo-36002: Use AC_PATH_TOOL to find llvm-profdata and llvm-ar. (GH-14998) by Miss Islington (bot) · 4 years, 10 months ago
  55. 6638c92 [3.8] bpo-38148: Add slots to asyncio transports (GH-16077) (GH-16093) by Andrew Svetlov · 4 years, 10 months ago
  56. 44cb89a bpo-12144: Handle cookies with expires attribute in CookieJar.make_cookies (GH-13921) by Miss Islington (bot) · 4 years, 10 months ago
  57. 8750dfe bpo-37785: Fix xgettext warning in argparse (GH-15161) by Miss Islington (bot) · 4 years, 10 months ago
  58. 664d56a bpo-38133: Allow py.exe launcher to locate installations from the Microsoft Store (GH-16025) by Miss Islington (bot) · 4 years, 10 months ago
  59. 21bfff9 closes bpo-37803: pdb: fix handling of options (--help / --version) (GH-15193) by Miss Islington (bot) · 4 years, 10 months ago
  60. a0d4aac [3.8] bpo-38121: Sync importlib.metadata with 0.22 backport (GH-15993) (GH-16064) by Jason R. Coombs · 4 years, 10 months ago
  61. 307c5fe bpo-37488 : Document a warning for datetime.utcnow() and utcfromtimestamp() (GH-15773) by Miss Islington (bot) · 4 years, 10 months ago
  62. 824407f bpo-21872: fix lzma library decompresses data incompletely (GH-14048) by Miss Islington (bot) · 4 years, 10 months ago
  63. 8976359 Overhaul datetime documentation (GH-13410) by Miss Islington (bot) · 4 years, 10 months ago
  64. 717cc61 bpo-36991: Fix incorrect exception escaping ZipFile.extract() (GH-13632) by Miss Islington (bot) · 4 years, 10 months ago
  65. 67b90a0 bpo-38132: Simplify _hashopenssl code (GH-16023) (#16040) by Miss Islington (bot) · 4 years, 10 months ago
  66. 535863e bpo-26868: Fix example usage of PyModule_AddObject. (GH-15725) by Miss Islington (bot) · 4 years, 10 months ago
  67. 80e3365 bpo-38134: Remove PKBDF2_HMAC_fast from _hashopenssl (GH-16028) by Miss Islington (bot) · 4 years, 10 months ago
  68. 84eb42e bpo-38110: Use fdwalk for os.closerange() when available. (GH-15224) by Miss Islington (bot) · 4 years, 10 months ago
  69. db0d8a5 bpo-37972: unittest.mock._Call now passes on __getitem__ to the __getattr__ chaining so that call() can be subscriptable (GH-15565) (GH-15965) by Miss Islington (bot) · 4 years, 10 months ago
  70. f60fd95 closes bpo-37405: Make socket.getsockname() always return a tuple for AF_CAN. (GH-14392) (GH-16018) by Miss Islington (bot) · 4 years, 10 months ago
  71. 52baf90 bpo-38008: Move builtin protocol whitelist to mapping instead of list (GH-15647) by Miss Islington (bot) · 4 years, 10 months ago
  72. 3562ae2 [3.8] bpo-37879: Suppress subtype_dealloc decref when base type is a C heap type (GH-15323, GH-16004) (GH-15966) by Petr Viktorin · 4 years, 10 months ago
  73. a5a7102 closes bpo-38124: Fix bounds check in PyState_AddModule. (GH-16007) by Miss Islington (bot) · 4 years, 10 months ago
  74. d6ac67f bpo-34001: Fix test_ssl with LibreSSL (GH-13783) (#15997) by Miss Islington (bot) · 4 years, 10 months ago
  75. c0acc0e Improve clarity of try-return-finally-return (GH-15677) (GH-15981) by Miss Islington (bot) · 4 years, 10 months ago
  76. 0b7f370 bpo-38117: Test with OpenSSL 1.1.1d (GH-15983) by Miss Islington (bot) · 4 years, 10 months ago
  77. c5a6723 bpo-36260: Add pitfalls to zipfile module documentation (GH-13378) (GH-15976) by Miss Islington (bot) · 4 years, 10 months ago
  78. 436cd2c bpo-38114: Do not include pip.ini in Nuget package (GH-15964) by Miss Islington (bot) · 4 years, 10 months ago
  79. 43ee0e2 bpo-33166: Change os.cpu_count to return active (real) processors (GH-15949) by Miss Islington (bot) · 4 years, 10 months ago
  80. 63eefc3 bpo-37885: venv: Don't produce unbound variable warning on deactivate (GH-15973) by Miss Islington (bot) · 4 years, 10 months ago
  81. 20f80bf bpo-36634: Fixes activate.bat when existing values contain double quotes (GH-15924) by Miss Islington (bot) · 4 years, 10 months ago
  82. 629f1f8 bpo-23460: Fix documentation for decimal string :g formatting (GH-11850) (GH-15954) by Miss Islington (bot) · 4 years, 10 months ago
  83. b4808c1 closes bpo-37252: Fix devpoll tests. (GH-14017) (GH-15948) by Miss Islington (bot) · 4 years, 10 months ago
  84. 42edfcf bpo-36919: make test_source_encoding.test_issue2301 implementation-independent (GH-13639) (GH-15952) by Miss Islington (bot) · 4 years, 10 months ago
  85. fef5bdc bpo-34519: Add additional aliases for HP Roman 8 (GH-8956) (GH-15945) by Miss Islington (bot) · 4 years, 10 months ago
  86. 35d0934 bpo-37305: add MIME type for Web App Manifest (GH-14199) (#15946) by Miss Islington (bot) · 4 years, 10 months ago
  87. cbd7b2a bpo-31163: Added return values to pathlib.Path instance's rename and replace methods. (GH-13582) (GH-15944) by Miss Islington (bot) · 4 years, 10 months ago
  88. d1d968d bpo-33944: note about the intended use of code in .pth files (GH-10131) (GH-15942) by Miss Islington (bot) · 4 years, 10 months ago
  89. 3b92ddb [3.8] bpo-35168: Make shlex.punctuation_chars read-only (GH-11631) (GH-15927) by Vinay Sajip · 4 years, 10 months ago
  90. e3bd941 bpo-20504 : in cgi.py, fix bug when a multipart/form-data request has… (GH-10638) by Miss Islington (bot) · 4 years, 10 months ago
  91. 0a6693a [3.8] bpo-37409: fix relative import with no parent (GH-14956) (GH-15913) by Brett Cannon · 4 years, 10 months ago
  92. 0ba5dbd bpo-32972: Document IsolatedAsyncioTestCase of unittest module (GH-15878) (GH-15918) by Miss Islington (bot) · 4 years, 10 months ago
  93. 57491de bpo-38081: Fixes ntpath.realpath('NUL') (GH-15899) by Miss Islington (bot) · 4 years, 10 months ago
  94. df935b5 [3.8] bpo-37936: Systematically distinguish rooted vs. unrooted in .gitignore (GH-15823) (GH-15900) by Zachary Ware · 4 years, 10 months ago
  95. 872c85a bpo-37424: Avoid a hang in subprocess.run timeout output capture (GH-14490) by Miss Islington (bot) · 4 years, 10 months ago
  96. cdce233 bpo-38089: Move Azure Pipelines to latest VM versions and make macOS tests optional (GH-15851) by Miss Islington (bot) · 4 years, 10 months ago
  97. d42a4fd bpo-37531: Enhance regrtest multiprocess timeout (GH-15345) (GH-15871) by Victor Stinner · 4 years, 10 months ago
  98. 97c2f68 [3.8] bpo-38086: Sync importlib.metadata with importlib_metadata 0.21. (GH-15840) (#15861) by Jason R. Coombs · 4 years, 10 months ago
  99. 2ed0ac6 bpo-38088: Fixes distutils not finding vcruntime140.dll with only v142 toolset installed (GH-15849) by Miss Islington (bot) · 4 years, 10 months ago
  100. 206e4c3 bpo-38087: Fix case sensitivity in test_pathlib and test_ntpath (GH-15850) by Steve Dower · 4 years, 10 months ago