1. dfe8847 bpo-36142: Rework error reporting in pymain_main() (GH-12113) by Victor Stinner · 5 years ago
  2. b9f0354 bpo-36152: IDLE: Remove unused parameter from colorizer (GH-12109) by Cheryl Sabella · 5 years ago
  3. d60a79a bpo-36155: Check for identity on test_gc.test_get_objects (GH-12116) by Pablo Galindo · 5 years ago
  4. 9add4b3 bpo-36018: Add documentation link to "random variable" (GH-12114) by Raymond Hettinger · 5 years ago
  5. f684d83 bpo-36142: Exclude coreconfig.h from Py_LIMITED_API (GH-12111) by Victor Stinner · 5 years ago
  6. ab71f8b bpo-29571: Fix test_re.test_locale_flag() (GH-12099) by Victor Stinner · 5 years ago
  7. ef17fdb bpo-36018: Add special value tests and make minor tweaks to the docs (GH-12096) by Raymond Hettinger · 5 years ago
  8. ae2ea33 Add versionadded directives to ssl.minimum_version and ssl.maximum_version (GH-11894) by Zhiming Wang · 5 years ago
  9. 4cbea51 bpo-36146: Refactor setup.py (GH-12093) by Victor Stinner · 5 years ago
  10. 4173772 Document the surprising sideeffect PyErr_Print(). (#12081) by Gregory P. Smith · 5 years ago
  11. 4064089 Fix grammar error in timeit module docs (GH-12066) by Shiv Dhar · 5 years ago
  12. ccb92e8 Update FAQ to point to Infrastructure Team website. (GH-12077) by Ned Deily · 5 years ago
  13. ed1deb0 bpo-36096: IDLE: Refactor class variables in colorizer (GH-12002) by Cheryl Sabella · 5 years ago
  14. 32f5fdd bpo-31904: Add cross-build support for VxWorks RTOS (GH-11968) by pxinwr · 5 years ago
  15. 53b9e1a bpo-36123: Fix test_socket.testWithTimeoutTriggeredSend() race condition (GH-12053) by Joannah Nanjekye · 5 years ago
  16. c606a9c bpo-35652: shutil.copytree(copy_function=...) erroneously pass DirEntry instead of path str (GH-11997) by Giampaolo Rodola · 5 years ago
  17. d5a551c closes bpo-36115: Fix some reference leaks in typeobject.c. (GH-12045) by Benjamin Peterson · 5 years ago
  18. f57cd82 bpo-36106: Resolve sinpi name clash with libm (IEEE-754 violation). (GH-12027) by Dima Pasechnik · 5 years ago
  19. ff3d39f bpo-36109: Fix random test_descr failure. (GH-12044) by Serhiy Storchaka · 5 years ago
  20. b84df2d Run autoreconf. by Benjamin Peterson · 5 years ago
  21. 90c6fac closes bpo-13497: Fix `broken nice` configure test. (GH-12041) by ngie-eign · 5 years ago
  22. 6673dec bpo-24643: Fix "#define timezone _timezone" clashes on Windows (GH-12019) by Zackery Spytz · 5 years ago
  23. aadef2b bpo-36102: Prepend slash to all POSIX shared memory block names (#12036) by Davin Potts · 5 years ago
  24. 8377cd4 Clean up code which checked presence of os.{stat,lstat,chmod} (#11643) by Anthony Sottile · 5 years ago
  25. 9c3f284 Autospec functions should propagate mock calls to parent GH-11273 by Xtreak · 5 years ago
  26. f1b9abe bpo-36030: Remove _PyStack_AsTuple() and _PyStack_AsTupleSlice() (GH-12032) by Sergey Fedoseev · 5 years ago
  27. b5853e2 Post v3.8.0a2 by Łukasz Langa · 5 years ago
  28. 3025a7e Merge tag 'v3.8.0a2' by Łukasz Langa · 5 years ago
  29. 234531b bpo-36030: Add _PyTuple_FromArray() function (GH-11954) by Sergey Fedoseev · 5 years ago
  30. 55e335d Remove empty Dictionaries section from programming FAQ (GH-12026) by Andre Delfino · 5 years ago
  31. a24107b bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112) by Serhiy Storchaka · 5 years ago
  32. a180b00 bpo-28450: Fix and improve the documentation for unknown escapes in RE. (GH-11920) by Serhiy Storchaka · 5 years ago
  33. 6a44f6e bpo-36048: Use __index__() instead of __int__() for implicit conversion if available. (GH-11952) by Serhiy Storchaka · 5 years ago
  34. d90a141 Correct name of 'defaultobj' parameter in PyDict_SetDefault() signature. (GH-11929) by Sergey Fedoseev · 5 years ago
  35. 23f4589 v3.8.0a2 by Łukasz Langa · 5 years ago
  36. 16323cb closes bpo-36083: Fix formatting of the manpage Synopsis. (GH-12017) by Miro Hrončok · 5 years ago
  37. 3b0abb0 bpo-33671: allow setting shutil.copyfile() bufsize globally (GH-12016) by Giampaolo Rodola · 5 years ago
  38. ef4ac96 bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11617) by Eric Snow · 5 years ago
  39. 463572c bpo-36101: remove non-ascii characters in docstring (GH-12018) by animalize · 5 years ago
  40. 9e456bc bpo-36018: Add properties for mean and stdev (GH-12022) by Raymond Hettinger · 5 years ago
  41. a875ea5 bpo-35512: Resolve string target to patch.dict decorator during function call GH#12000 by Xtreak · 5 years ago
  42. aeca373 bpo-27313: Avoid test_ttk_guionly ComboboxTest fail with macOS Cocoa Tk (GH-12011) by Ned Deily · 5 years ago
  43. 79fbcc5 bpo-36018: Make __pos__ return a distinct instance of NormDist (GH-12009) by Raymond Hettinger · 5 years ago
  44. e895de3 bpo-35813: Tests and docs for shared_memory (#11816) by Davin Potts · 5 years ago
  45. d610116 bpo-24310: Document IDLE settings dialog font tab sample (GH-12007) by Terry Jan Reedy · 5 years ago
  46. abe5922 fix _abc.c compile error on Cygwin (GH-8445) by E. M. Bray · 5 years ago
  47. 11c7953 bpo-36018: Add the NormalDist class to the statistics module (GH-11973) by Raymond Hettinger · 5 years ago
  48. 64d6cc8 bpo-35724: Explicitly require the main interpreter for signal-handling. (GH-11530) by Eric Snow · 5 years ago
  49. 06babb2 bpo-1054041: Add What's New docs. (GH-11999) by Gregory P. Smith · 5 years ago
  50. be3b295 bpo-35886: Make PyInterpreterState an opaque type in the public API. (GH-11731) by Eric Snow · 5 years ago
  51. 175421b bpo-36016: Add generation option to gc.getobjects() (GH-11909) by Pablo Galindo · 5 years ago
  52. df5cdc1 bpo-36074: Result of `asyncio.Server.sockets` after `Server.close()` after is not clear (GH-11987) by Emmanuel Arias · 5 years ago
  53. a40681d bpo-36019: Use pythontest.net instead of example.com in network tests (GH-11941) by Stéphane Wirtel · 5 years ago
  54. 3208880 Include the --prompt flag in venv's help output (GH-10711) by Holger Frey · 5 years ago
  55. 6e240dd Doc: Missing backquotes. (GH-11982) by Julien Palard · 5 years ago
  56. e5458bd bpo-28235: Fix xml.etree.ElementTree.fromstring docs (GH-11903) by Manjusaka · 5 years ago
  57. 47d9987 bpo-35904: Add statistics.fmean() (GH-11892) by Raymond Hettinger · 5 years ago
  58. f36f892 bpo-36068: Make _tuplegetter objects serializable (GH-11981) by Joe Jevnik · 5 years ago
  59. 407c734 bpo-36057 Update docs and tests for ordering in collections.Counter [no behavior change] (#11962) by Raymond Hettinger · 5 years ago
  60. 86f093f bpo-36060: Document how collections.ChainMap() determines iteration order (GH-11969) by Raymond Hettinger · 5 years ago
  61. 7463884 Document other performance implication for __slots__ (GH-11974) by Raymond Hettinger · 5 years ago
  62. 3ad9167 bpo-36052: Raise a SyntaxError when assigning a value to __debug__ with := (GH-11958) by Stéphane Wirtel · 5 years ago
  63. ea6207d bpo-36063: Minor performance tweak in long_divmod(). (GH-11915) by Sergey Fedoseev · 5 years ago
  64. 49fd6dd bpo-36059: Update OrderedDict() docs to reflect that regular dicts are now ordered (GH-11966) by Raymond Hettinger · 5 years ago
  65. 11fa0e4 Doc: fix example for iter() function. (GH-11959) by Cristian Ciupitu · 5 years ago
  66. ebc793d bpo-33989: Ensure that ms.key_compare is always initialized in list_sort_impl(). (GH-8710) by Zackery Spytz · 5 years ago
  67. ef1b88b bpo-36062: Minor speed-up for list slicing and copying. (GH-11967) by Sergey Fedoseev · 5 years ago
  68. d9bc543 Re-init _Py_UnhandledKeyboardInterrupt before run. (GH-11963) by Gregory P. Smith · 5 years ago
  69. 9b0c681 bpo-31982: Improve sequence of presentation in ChainMap docs (GH-11960) by Raymond Hettinger · 5 years ago
  70. d8b9e1f bpo-36012: Avoid linear slot search for non-dunder methods (GH-11907) by Stefan Behnel · 5 years ago
  71. b5409da bpo-35993: Fix _PyInterpreterState_DeleteExceptMain() (GH-11852) by Stéphane Wirtel · 5 years ago
  72. 001fee1 bpo-12822: use monotonic clock for condvar if possible (GH-11723) by Inada Naoki · 5 years ago
  73. 46a9792 bpo-36049: Fix compiler warning in Python/ast.c (GH-11949) by Pablo Galindo · 5 years ago
  74. 3bacf61 bpo-35584: Clarify role of caret in a class class (GH-11946) by Raymond Hettinger · 5 years ago
  75. 3ef6344 bpo-36037: Fix test_ssl for strict OpenSSL policy (GH-11940) by Victor Stinner · 5 years ago
  76. beda52e bpo-35153: Add headers parameter to xmlrpc.client.ServerProxy (GH-10308) by Cédric Krier · 5 years ago
  77. 513e9b44 Doc: Fix typo. (GH-11315) by Julien Palard · 5 years ago
  78. 5105483 bpo-31506: Clarify error messages for object.__new__ and object.__init__ (GH-11641) by Sanyam Khurana · 5 years ago
  79. f522a57 Fix a misnamed test for lists. (GH-11933) by Serhiy Storchaka · 5 years ago
  80. 8d01eb4 Fix syntax warnings in tests introduced in bpo-35942. (GH-11934) by Serhiy Storchaka · 5 years ago
  81. 8e79e6e Fix syntax warnings in tests introduced in bpo-15248. (GH-11932) by Serhiy Storchaka · 5 years ago
  82. e7a4bb5 bpo-35798: Add test.support.check_syntax_warning(). (#11895) by Serhiy Storchaka · 5 years ago
  83. ee0f927 bpo-35689: IDLE: Add docstrings and unittests for colorizer.py (GH-11472) by Cheryl Sabella · 5 years ago
  84. 4371c0a bpo-34572: change _pickle unpickling to use import rather than retrieving from sys.modules (GH-9047) by tjb900 · 5 years ago
  85. 4a7f44a bpo-34294: re module, fix wrong capturing groups in rare cases. (GH-11546) by animalize · 5 years ago
  86. 02c04f2 bpo-35704: Include correct NEWS entry (GH-11914) by Nick Coghlan · 5 years ago
  87. ef110b1 bpo-35704: Prevent test_shutil fail result when AIX is 32-bit and MAXDATA < 0x20000000 (GH-11500) by Michael Felt · 5 years ago
  88. 09fbcd6 bpo-35942: Improve the error message if __fspath__ returns invalid types in path_converter (GH-11831) by Pablo Galindo · 5 years ago
  89. ac28147 bpo-35992: Use PySequence_GetItem only if sq_item is not NULL (GH-11857) by Ivan Levkivskyi · 5 years ago
  90. 1bf8845 bpo-34720: Fix test_importlib.test_bad_traverse for AIX (GH-9391) by Michael Felt · 5 years ago
  91. 414c625 bpo-36013: delete fragile interactive shell SIGINT test (GH-11902) by Gregory P. Smith · 5 years ago
  92. 5382203 Convert range to repeat for choices() (#11889) by Raymond Hettinger · 5 years ago
  93. 38f11cc bpo-1054041: Exit properly after an uncaught ^C. (#11862) by Gregory P. Smith · 5 years ago
  94. 43766f8 bpo-35884: Add missing FIFO queue benchmark (GH-11898) by Raymond Hettinger · 5 years ago
  95. e182318 bpo-33234: Add another attribution in Whatsnew (GH-11899) by Raymond Hettinger · 5 years ago
  96. 63fa1cf bpo-32492: Add missing whatsnew entries for itemgetter and namedtuple (GH-11897) by Raymond Hettinger · 5 years ago
  97. 3ff5962 bpo-33089: Add math.dist() and math.hypot() to Whatsnew (GH-11896) by Raymond Hettinger · 5 years ago
  98. 4583525 bpo-35798: Fix duplicate SyntaxWarning: "is" with a literal. (GH-11639) by Serhiy Storchaka · 5 years ago
  99. 62e4481 bpo-15248: Emit a compiler warning when missed a comma before tuple or list. (GH-11757) by Serhiy Storchaka · 5 years ago
  100. a16ab00 bpo-36007: Bump minimum sphinx version to 1.8 (GH-11887) by Anthony Sottile · 5 years ago