1. b0917df bpo-36719: regrtest -jN no longer stops on crash (GH-13231) by Victor Stinner · 5 years ago
  2. 85c69d5 Fix typo in NEWS item about IDLE (os.flush() should be os.fsync()) (#13284) by Guido van Rossum · 5 years ago
  3. 4f098b3 bpo-36807: When saving a file in IDLE, call flush and fsync (#13102) by Guido van Rossum · 5 years ago
  4. d5d9e81 bpo-36728: Remove PyEval_ReInitThreads() from C API (GH-13241) by Victor Stinner · 5 years ago
  5. cf599f6 bpo-6584: Add a BadGzipFile exception to the gzip module. (GH-13022) by Zackery Spytz · 5 years ago
  6. e250061 bpo-36895: remove time.clock() as per removal notice. (GH-13270) by Matthias Bussonnier · 5 years ago
  7. 4959c33 bpo-36084: Add native thread ID to threading.Thread objects (GH-11993) by Jake Tesler · 5 years ago
  8. d8320ec bpo-36878: Allow extra text after `# type: ignore` comments (GH-13238) by Michael J. Sullivan · 5 years ago
  9. f22cc69 bpo-36867: Make semaphore_tracker track other system resources (GH-13222) by Pierre Glaser · 5 years ago
  10. d0d64ad bpo-36368: Ignore SIGINT in SharedMemoryManager servers. (GH-12483) by Pierre Glaser · 5 years ago
  11. 86ea581 bpo-36737: Use the module state C-API for warnings. (gh-13159) by Eric Snow · 5 years ago
  12. 351c674 bpo-35983: skip trashcan for subclasses (GH-11841) by Jeroen Demeyer · 5 years ago
  13. 79efbb7 bpo-24538: Fix bug in shutil involving the copying of xattrs to read-only files. (PR-13212) by Olexa Bilaniuk · 5 years ago
  14. 948ed8c bpo-36814: ensure os.posix_spawn() handles None (GH-13144) by Anthony Shaw · 5 years ago
  15. fce5ff1 bpo-27497: Add return value to csv.DictWriter.writeheader (GH-12306) by Rémi Lapeyre · 5 years ago
  16. d237b3f bpo-36601: clarify signal handler comment and remove unnecessary pid check. (GH-12784) by Jeroen Demeyer · 5 years ago
  17. d267ac2 bpo-36778: cp65001 encoding becomes an alias to utf_8 (GH-13230) by Victor Stinner · 5 years ago
  18. 137be34 bpo-32523: Simplifying news entries with multiple paragraphs. (GH-8154) by Julien Palard · 5 years ago
  19. a076e4f bpo-36802: Drop awrite()/aclose(), support await write() and await close() instead (#13099) by Andrew Svetlov · 5 years ago
  20. e657624 bpo-30262: Don't expose private objects in sqlite3 (GH-1440) by Aviv Palivoda · 5 years ago
  21. f00828a bpo-36851: Clean the frame stack if the execution ends with a return and the stack is not empty (GH-13191) by Pablo Galindo · 5 years ago
  22. afd1e6d bpo-36239: Skip comments in gettext infos (GH-12255) by Julien Palard · 5 years ago
  23. 3aca40d closes bpo-36861: Update Unicode database to 12.1.0. (GH-13214) by Benjamin Peterson · 5 years ago
  24. 289f1f8 bpo-35900: Enable custom reduction callback registration in _pickle (GH-12499) by Pierre Glaser · 5 years ago
  25. 9a4135e bpo-36817: Add f-string debugging using '='. (GH-13123) by Eric V. Smith · 5 years ago
  26. 65d98d0 bpo-35900: Add a state_setter arg to save_reduce (GH-12588) by Pierre Glaser · 5 years ago
  27. 3988986 bpo-26903: Limit ProcessPoolExecutor to 61 workers on Windows (GH-13132) by Brian Quinlan · 5 years ago
  28. 6bd8173 bpo-36816: Update the self-signed.pythontest.net cert (GH-13192) by Gregory P. Smith · 5 years ago
  29. 94a64e9 bpo-24048: Save the live exception during import.c's remove_module() (GH-13005) by Zackery Spytz · 5 years ago
  30. b2758ff bpo-36832: add zipfile.Path (#13153) by Jason R. Coombs · 5 years ago
  31. b1c3167 bpo-27639: Correct return type for UserList slicing operation (#13169) by Michael Blahay · 5 years ago
  32. 1cc0ee7 bpo-36801: Fix waiting in StreamWriter.drain for closing SSL transport (GH-13098) by Andrew Svetlov · 5 years ago
  33. b35acc5 bpo-35125: remove inner callback on outer cancellation in asyncio shield (GH-10340) by Romain Picard · 5 years ago
  34. 63deaa5 bpo-31922: Do not connect UDP sockets when broadcast is allowed (GH-423) by Vincent Michel · 5 years ago
  35. 64aa6d2 bpo-36533: Reinit logging.Handler locks on fork(). (GH-12704) by Gregory P. Smith · 5 years ago
  36. 5765ecf bpo-36783: Added C API Documentation for Time_FromTimeAndFold and PyDateTime_FromDateAndTimeAndFold (GH-13147) by Edison A · 5 years ago
  37. bbbdc2b Merge tag 'v3.8.0a4' by Łukasz Langa · 5 years ago
  38. 11a8832 bpo-31855: unittest.mock.mock_open() results now respects the argument of read([size]) (GH-11521) by Rémi Lapeyre · 5 years ago
  39. ad4ed87 Forbid creating of stream objects outside of asyncio (#13101) by Andrew Svetlov · 5 years ago
  40. 2cc0223 bpo-35925: Skip SSL tests that fail due to weak external certs. (GH-13124) by Gregory P. Smith · 5 years ago
  41. d53cf99 bpo-36542: Allow to overwrite the signature for Python functions. (GH-12705) by Serhiy Storchaka · 5 years ago
  42. 96aeaec bpo-36793: Remove unneeded __str__ definitions. (GH-13081) by Serhiy Storchaka · 5 years ago
  43. c1004b8 Python 3.8.0a4 by Łukasz Langa · 5 years ago
  44. 1a2252e bpo-36594: Fix incorrect use of %p in format strings (GH-12769) by Zackery Spytz · 5 years ago
  45. 88f07a8 bpo-33530: Implement Happy Eyeballs in asyncio, v2 (GH-7237) by twisteroid ambassador · 5 years ago
  46. 6b5b013 bpo-26978: Implement pathlib.Path.link_to (Using os.link) (GH-12990) by Joannah Nanjekye · 5 years ago
  47. 4754168 bpo-28238: Implement "{*}tag" and "{ns}*" wildcard tag selection support for ElementPath, and extend the surrounding tests and docs. (GH-12997) by Stefan Behnel · 5 years ago
  48. c1964e9 bpo-36613: call remove_done_callback if exception (GH-12800) by gescheit · 5 years ago
  49. 4461d70 bpo-36341: Fix tests calling bind() on AF_UNIX sockets (GH-12399) by xdegaye · 5 years ago
  50. c4e78b1 bpo-14546: Fix the argument handling in Tools/scripts/lll.py (GH-13026) by Zackery Spytz · 5 years ago
  51. b7378d7 bpo-30458: Use InvalidURL instead of ValueError. (GH-13044) by Gregory P. Smith · 5 years ago
  52. e1d5dd6 bpo-13611: C14N 2.0 implementation for ElementTree (GH-12966) by Stefan Behnel · 5 years ago
  53. dde3eeb bpo-36676: Namespace prefix aware parsing support for the ET.XMLParser target (GH-12885) by Stefan Behnel · 5 years ago
  54. 43851a2 bpo-36673: Implement comment/PI parsing support for the TreeBuilder in ElementTree. (#12883) by Stefan Behnel · 5 years ago
  55. 3d37ea2 bpo-27682: Handle client connection terminations in wsgiref (GH-9713) by Petter Strandmark · 5 years ago
  56. c4e671e bpo-30458: Disallow control chars in http URLs. (GH-12755) by Gregory P. Smith · 5 years ago
  57. 463b82a bpo-36763: Fix Py_SetStandardStreamEncoding() (GH-13028) by Victor Stinner · 5 years ago
  58. 0df635c Don't report deleted attributes in __dir__ (GH#10148) by Mario Corchero · 5 years ago
  59. d537ab0 bpo-36742: Fixes handling of pre-normalization characters in urlsplit() (GH-13017) by Steve Dower · 5 years ago
  60. b84cb70 bpo-36734: Fix compilation of faulthandler.c on HP-UX (GH-12970) by Victor Stinner · 5 years ago
  61. 3bbcc92 bpo-25430: improve performance of IPNetwork.__contains__ (GH-1785) by gescheit · 5 years ago
  62. d5d2b45 bpo-36751: Deprecate getfullargspec and report positional-only args as regular args (GH-13016) by Pablo Galindo · 5 years ago
  63. 81c5a90 bpo-36232: Improve error message on dbm.open() when the db doesn't exist (GH-12060) by Marco Rougeth · 5 years ago
  64. 883dfc6 bpo-34602: Avoid failures setting macOS stack resource limit (GH-13011) by Ned Deily · 5 years ago
  65. be6dbfb bpo-1613500: Don't hardcode output file mode in fileinput.FileInput (GH-12986) by Berker Peksag · 5 years ago
  66. 88c0937 bpo-36004: Add date.fromisocalendar (GH-11888) by Paul Ganssle · 5 years ago
  67. a86e064 bpo-35952: Fix test.pythoninfo when the compiler is missing (GH-13007) by xdegaye · 5 years ago
  68. 8c77b8c bpo-36540: PEP 570 -- Implementation (GH-12701) by Pablo Galindo · 5 years ago
  69. 7a5a1cf bpo-36747: Remove the stale scriptsinstall Makefile target (GH-13003) by xdegaye · 5 years ago
  70. f781d20 bpo-36475: Finalize PyEval_AcquireLock() and PyEval_AcquireThread() properly (GH-12667) by Joannah Nanjekye · 5 years ago
  71. 254b309 bpo-21536: On Android, C extensions are linked to libpython (GH-12989) by xdegaye · 5 years ago
  72. 50fed0b bpo-32424: Improve test coverage for xml.etree.ElementTree (GH-12891) by Gordon P. Hemsley · 5 years ago
  73. 4d8c8c0 bpo-36025: Fix PyDate_FromTimestamp API (GH-11922) by Paul Ganssle · 5 years ago
  74. 5c403b2 bpo-36722: Style and grammar edits for ABI news entries (GH-12979) by Paul Ganssle · 5 years ago
  75. 75120d2 bpo-36719: regrtest always detect uncollectable objects (GH-12951) by Victor Stinner · 5 years ago
  76. 7abb6c0 bpo-36669: add matmul support to weakref.proxy (GH-12932) by Mark Dickinson · 5 years ago
  77. 3cde440 bpo-36725: Refactor regrtest multiprocessing code (GH-12961) by Victor Stinner · 5 years ago
  78. 5422e3c bpo-36722: Debug build loads libraries built in release mode (GH-12952) by Victor Stinner · 5 years ago
  79. 62dfd7d bpo-35920: Windows 10 ARM32 platform support (GH-11774) by Paul Monson · 5 years ago
  80. 8c3ecc6 bpo-21536: C extensions are no longer linked to libpython (GH-12946) by Victor Stinner · 5 years ago
  81. 0ef8c15 bpo-28552: Fix distutils.sysconfig for empty sys.executable (GH-12875) by Victor Stinner · 5 years ago
  82. 235e7b2 bpo-36465: Fix test_regrtest on Windows (GH-12945) by Victor Stinner · 5 years ago
  83. f4e4703 bpo-36465: Make release and debug ABI compatible (GH-12615) by Victor Stinner · 5 years ago
  84. 004b93e bpo-36668: FIX reuse semaphore tracker for child processes (#5172) by Thomas Moreau · 5 years ago
  85. 70bf713 bpo-30840: Document relative imports (#12831) by Joannah Nanjekye · 5 years ago
  86. 6c44fde bpo-36707: Remove the "m" flag (pymalloc) from SOABI (GH-12931) by Victor Stinner · 5 years ago
  87. d246a67 bpo-36454: Fix test_time.test_monotonic() (GH-12929) by Victor Stinner · 5 years ago
  88. 359bd4f bpo-18372: Add missing PyObject_GC_Track() calls in the pickle module (GH-8505) by Zackery Spytz · 5 years ago
  89. 9013ccf bpo-36546: Add statistics.quantiles() (#12710) by Raymond Hettinger · 5 years ago
  90. ab86521 bpo-36523: Add docstring to io.IOBase.writelines (GH-12683) by Marcin Niemira · 5 years ago
  91. 9b21856 bpo-23078: Add support for {class,static}method to mock.create_autospec() (GH-11613) by Xtreak · 5 years ago
  92. 14adbd4 bpo-36650: Fix handling of empty keyword args in C version of lru_cache. (GH-12881) by Raymond Hettinger · 5 years ago
  93. e8113f5 bpo-30485: Change the prefix for defining the default namespace in ElementPath from None to '' since there is existing code that uses that and it's more convenient to have an all-string-keys dict (e.g. when sorting items etc.). (#12860) by Stefan Behnel · 5 years ago
  94. 23bace2 bpo-36635: Add _testinternalcapi module (GH-12841) by Victor Stinner · 5 years ago
  95. a6de52c bpo-32913: Added re.Match.groupdict example to regex HOWTO (GH-5821) by josh · 5 years ago
  96. 4c3efd9 bpo-36649: Remove trailing spaces for registry keys when installed via the Store (GH-12865) by Steve Dower · 5 years ago
  97. 5c75f37 bpo-36635: Change pyport.h for Py_BUILD_CORE_MODULE define (GH-12853) by Victor Stinner · 5 years ago
  98. 3092d6b bpo-32849: Fix is_valid_fd() on FreeBSD (GH-12852) by Victor Stinner · 5 years ago
  99. 197f044 bpo-35755: Don't say "to mimick Unix which command behavior" (GH-12861) by Victor Stinner · 5 years ago
  100. 693c104 bpo-31904: Port test_resource to VxWorks (GH-12719) by Lihua Zhao · 5 years ago