1. b727239 closes bpo-36188: Clean up 'unbound' method left-overs. (GH-12169) by Martijn Pieters · 6 years ago
  2. b7bc283 bpo-36179: Fix ref leaks in _hashopenssl (GH-12158) by Christian Heimes · 6 years ago
  3. 800d5cd bpo-35198 Fix C++ extension compilation on AIX (GH-10437) by Kevin Adler · 6 years ago
  4. f4b0a1c bpo-31904: Add encoding support for VxWorks RTOS (GH-12051) by pxinwr · 6 years ago
  5. 8b914d2 bpo-35899: Fix Enum handling of empty and weird strings (GH-11891) by Brennan D Baraban · 6 years ago
  6. 0a6a412 bpo-36091: Remove reference to async generator in Lib/types.py. (GH-11996) by Henry Chen · 6 years ago
  7. 4f19030 bpo-36103: change default buffer size of shutil.copyfileobj() (GH-12115) by Inada Naoki · 6 years ago
  8. 1f24a71 bpo-35808: Retire pgen and use pgen2 to generate the parser (GH-11814) by Pablo Galindo · 6 years ago
  9. 7eebbbd bpo-32129: Avoid blurry IDLE application icon on macOS with Tk 8.6. (GH-12031) by Ned Deily · 6 years ago
  10. 4b219ce bpo-36043: FileCookieJar supports os.PathLike (GH-11945) by Stéphane Wirtel · 6 years ago
  11. cfe172d bpo-36146: Add TEST_EXTENSIONS to setup.py (GH-12129) by Victor Stinner · 6 years ago
  12. be7c460 bpo-35178: Fix warnings._formatwarnmsg() (GH-12033) by Xtreak · 6 years ago
  13. 96d8158 bpo-36146: Fix inc_dirs in setup.py on macOS (GH-12098) by Victor Stinner · 6 years ago
  14. b9f0354 bpo-36152: IDLE: Remove unused parameter from colorizer (GH-12109) by Cheryl Sabella · 6 years ago
  15. f684d83 bpo-36142: Exclude coreconfig.h from Py_LIMITED_API (GH-12111) by Victor Stinner · 6 years ago
  16. ab71f8b bpo-29571: Fix test_re.test_locale_flag() (GH-12099) by Victor Stinner · 6 years ago
  17. ed1deb0 bpo-36096: IDLE: Refactor class variables in colorizer (GH-12002) by Cheryl Sabella · 6 years ago
  18. 32f5fdd bpo-31904: Add cross-build support for VxWorks RTOS (GH-11968) by pxinwr · 6 years ago
  19. 53b9e1a bpo-36123: Fix test_socket.testWithTimeoutTriggeredSend() race condition (GH-12053) by Joannah Nanjekye · 6 years ago
  20. c606a9c bpo-35652: shutil.copytree(copy_function=...) erroneously pass DirEntry instead of path str (GH-11997) by Giampaolo Rodola · 6 years ago
  21. f57cd82 bpo-36106: Resolve sinpi name clash with libm (IEEE-754 violation). (GH-12027) by Dima Pasechnik · 6 years ago
  22. 6673dec bpo-24643: Fix "#define timezone _timezone" clashes on Windows (GH-12019) by Zackery Spytz · 6 years ago
  23. 8377cd4 Clean up code which checked presence of os.{stat,lstat,chmod} (#11643) by Anthony Sottile · 6 years ago
  24. 9c3f284 Autospec functions should propagate mock calls to parent GH-11273 by Xtreak · 6 years ago
  25. 3025a7e Merge tag 'v3.8.0a2' by Łukasz Langa · 6 years ago
  26. 6a44f6e bpo-36048: Use __index__() instead of __int__() for implicit conversion if available. (GH-11952) by Serhiy Storchaka · 6 years ago
  27. 23f4589 v3.8.0a2 by Łukasz Langa · 6 years ago
  28. 16323cb closes bpo-36083: Fix formatting of the manpage Synopsis. (GH-12017) by Miro Hrončok · 6 years ago
  29. ef4ac96 bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11617) by Eric Snow · 6 years ago
  30. a875ea5 bpo-35512: Resolve string target to patch.dict decorator during function call GH#12000 by Xtreak · 6 years ago
  31. aeca373 bpo-27313: Avoid test_ttk_guionly ComboboxTest fail with macOS Cocoa Tk (GH-12011) by Ned Deily · 6 years ago
  32. d610116 bpo-24310: Document IDLE settings dialog font tab sample (GH-12007) by Terry Jan Reedy · 6 years ago
  33. 11c7953 bpo-36018: Add the NormalDist class to the statistics module (GH-11973) by Raymond Hettinger · 6 years ago
  34. 64d6cc8 bpo-35724: Explicitly require the main interpreter for signal-handling. (GH-11530) by Eric Snow · 6 years ago
  35. 06babb2 bpo-1054041: Add What's New docs. (GH-11999) by Gregory P. Smith · 6 years ago
  36. be3b295 bpo-35886: Make PyInterpreterState an opaque type in the public API. (GH-11731) by Eric Snow · 6 years ago
  37. 175421b bpo-36016: Add generation option to gc.getobjects() (GH-11909) by Pablo Galindo · 6 years ago
  38. a40681d bpo-36019: Use pythontest.net instead of example.com in network tests (GH-11941) by Stéphane Wirtel · 6 years ago
  39. 47d9987 bpo-35904: Add statistics.fmean() (GH-11892) by Raymond Hettinger · 6 years ago
  40. 3ad9167 bpo-36052: Raise a SyntaxError when assigning a value to __debug__ with := (GH-11958) by Stéphane Wirtel · 6 years ago
  41. ebc793d bpo-33989: Ensure that ms.key_compare is always initialized in list_sort_impl(). (GH-8710) by Zackery Spytz · 6 years ago
  42. d8b9e1f bpo-36012: Avoid linear slot search for non-dunder methods (GH-11907) by Stefan Behnel · 6 years ago
  43. b5409da bpo-35993: Fix _PyInterpreterState_DeleteExceptMain() (GH-11852) by Stéphane Wirtel · 6 years ago
  44. 001fee1 bpo-12822: use monotonic clock for condvar if possible (GH-11723) by Inada Naoki · 6 years ago
  45. 3ef6344 bpo-36037: Fix test_ssl for strict OpenSSL policy (GH-11940) by Victor Stinner · 6 years ago
  46. beda52e bpo-35153: Add headers parameter to xmlrpc.client.ServerProxy (GH-10308) by Cédric Krier · 6 years ago
  47. 5105483 bpo-31506: Clarify error messages for object.__new__ and object.__init__ (GH-11641) by Sanyam Khurana · 6 years ago
  48. e7a4bb5 bpo-35798: Add test.support.check_syntax_warning(). (#11895) by Serhiy Storchaka · 6 years ago
  49. ee0f927 bpo-35689: IDLE: Add docstrings and unittests for colorizer.py (GH-11472) by Cheryl Sabella · 6 years ago
  50. 4371c0a bpo-34572: change _pickle unpickling to use import rather than retrieving from sys.modules (GH-9047) by tjb900 · 6 years ago
  51. 4a7f44a bpo-34294: re module, fix wrong capturing groups in rare cases. (GH-11546) by animalize · 6 years ago
  52. 02c04f2 bpo-35704: Include correct NEWS entry (GH-11914) by Nick Coghlan · 6 years ago
  53. ef110b1 bpo-35704: Prevent test_shutil fail result when AIX is 32-bit and MAXDATA < 0x20000000 (GH-11500) by Michael Felt · 6 years ago
  54. 09fbcd6 bpo-35942: Improve the error message if __fspath__ returns invalid types in path_converter (GH-11831) by Pablo Galindo · 6 years ago
  55. ac28147 bpo-35992: Use PySequence_GetItem only if sq_item is not NULL (GH-11857) by Ivan Levkivskyi · 6 years ago
  56. 1bf8845 bpo-34720: Fix test_importlib.test_bad_traverse for AIX (GH-9391) by Michael Felt · 6 years ago
  57. 38f11cc bpo-1054041: Exit properly after an uncaught ^C. (#11862) by Gregory P. Smith · 6 years ago
  58. 62e4481 bpo-15248: Emit a compiler warning when missed a comma before tuple or list. (GH-11757) by Serhiy Storchaka · 6 years ago
  59. a16ab00 bpo-36007: Bump minimum sphinx version to 1.8 (GH-11887) by Anthony Sottile · 6 years ago
  60. 4327705 bpo-35931: Gracefully handle SyntaxError in pdb debug command (GH-11782) by Daniel Hahler · 6 years ago
  61. 355f16f bpo-35746: Credit Colin Read and Nicolas Edet (GH-11863) by Victor Stinner · 6 years ago
  62. 8a1657b bpo-35976: Enable Windows projects to build with platform ARM32 (GH-11825) by Paul Monson · 6 years ago
  63. bb3c05d closes bpo-35991: Fix a potential double free in Modules/_randommodule.c. (GH-11849) by Zackery Spytz · 6 years ago
  64. 2bdd585 bpo-35500: align expected and actual calls on mock.assert_called_with error message. (GH-11804) by Susan Su · 6 years ago
  65. dcb68f4 bpo-35961: Fix a crash in slice_richcompare() (GH-11830) by Victor Stinner · 6 years ago
  66. 5680f65 bpo-18283: Add support for bytes to shutil.which (GH-11818) by Cheryl Sabella · 6 years ago
  67. 3dc67d0 bpo-35505: Skip test_imap4_host_default_value if localhost listens on IMAP port (GH-11823) by Matěj Cepl · 6 years ago
  68. b01786c bpo-35960: Fix dataclasses.field throwing away empty metadata. (GH-11815) by Christopher Hunt · 6 years ago
  69. a31f4cc bpo-35918: Remove broken has_key method and add test (#11819) by Rémi Lapeyre · 6 years ago
  70. 3766f18 bpo-35378: Fix multiprocessing.Pool references (GH-11627) by Pablo Galindo · 6 years ago
  71. 537b6ca bpo-22062: Updated docstring and documentation for pathlib (GH-8519) by Eivind Teig · 6 years ago
  72. 8a03ff2 bpo-35833: Revise IDLE doc for control codes sent to Shell. (GH-11799) by Terry Jan Reedy · 6 years ago
  73. 96d37db bpo-35615: Fix crashes when copying a Weak{Key,Value}Dictionary. (GH-11384) by Fish · 6 years ago
  74. df8d2cd bpo-35911: add cell constructor (GH-11771) by Pierre Glaser · 6 years ago
  75. f289084 bpo-24209: In http.server script, rely on getaddrinfo to bind to preferred address based on the bind parameter. (#11767) by Jason R. Coombs · 6 years ago
  76. 2848d9d bpo-35917: Test multiprocessing manager classes and shareable types (GH-11772) by Giampaolo Rodola · 6 years ago
  77. bc09851 bpo-35606: Implement math.prod (GH-11359) by Pablo Galindo · 6 years ago
  78. 85e102a bpo-35299: Fixed sysconfig and distutils during PGO profiling (GH-11744) by Steve Dower · 7 years ago
  79. 69091cb bpo-35321: Set the spec origin to frozen in frozen modules (#11732) by Nina Zakharenko · 7 years ago
  80. 89427cd bpo-32417: Make timedelta arithmetic respect subclasses (#10902) by Paul Ganssle · 7 years ago
  81. e7afe1a Merge tag 'v3.8.0a1' by Łukasz Langa · 7 years ago
  82. a8474d0 bpo-35872 and bpo-35873: Clears __PYVENV_LAUNCHER__ variable (GH-11745) by Steve Dower · 7 years ago
  83. 2f6fae6 bpo-35692: pathlib no longer raises when checking file and directory existence on drives that are not ready (GH-11746) by Steve Dower · 7 years ago
  84. 8efa3b6 [blurb] v3.8.0a1 by Łukasz Langa · 7 years ago
  85. f75d59e bpo-35884: Add variable access benchmarking script (GH-11725) by Raymond Hettinger · 7 years ago
  86. 8ebc645 bpo-35890 : Fix some API calling consistency (GH-11742) by Minmin Gong · 7 years ago
  87. 4c70d9f bpo-34691: Compile _contextvars module into main Python library (GH-11741) by Steve Dower · 7 years ago
  88. b82bfac bpo-29734: nt._getfinalpathname handle leak (GH-740) by Mark Becwar · 7 years ago
  89. cb09047 bpo-32560: inherit the py launcher's STARTUPINFO (GH-9000) by Shiva Saxena · 7 years ago
  90. d08ea70 bpo-35845: Add order={'C', 'F', 'A'} parameter to memoryview.tobytes(). (#11730) by Stefan Krah · 7 years ago
  91. 4860f01 bpo-33895: Relase GIL while calling functions that acquire Windows loader lock (GH-7789) by Tony Roberts · 7 years ago
  92. 2de576e bpo-1104: msilib.SummaryInfo.GetProperty() truncates the string by one character (GH-4517) by Tzu-ping Chung · 7 years ago
  93. 05e9221 bpo-33316: PyThread_release_lock always fails (GH-6541) by native-api · 7 years ago
  94. e5ef45b bpo-35813: Added shared_memory submodule of multiprocessing. (#11664) by Davin Potts · 7 years ago
  95. d4fceaa bpo-35877: Make parenthesis optional for named expression in while statement (GH-11724) by Xtreak · 7 years ago
  96. 80c5dfe bpo-35537: Add setsid parameter to os.posix_spawn() and os.posix_spawnp() (GH-11608) by Joannah Nanjekye · 7 years ago
  97. dcfcd14 bpo-35766: Merge typed_ast back into CPython (GH-11645) by Guido van Rossum · 7 years ago
  98. 0bb4bdf bpo-35864: Replace OrderedDict with regular dict in namedtuple() (#11708) by Raymond Hettinger · 7 years ago
  99. 9f3f093 bpo-34003: Use dict instead of OrderedDict in csv.DictReader (GH-8014) by Michael Selik · 7 years ago
  100. a1f9a33 bpo-35854: Fix EnvBuilder and --symlinks in venv on Windows (GH-11700) by Steve Dower · 7 years ago