1. e7a4bb5 bpo-35798: Add test.support.check_syntax_warning(). (#11895) by Serhiy Storchaka · 6 years ago
  2. ee0f927 bpo-35689: IDLE: Add docstrings and unittests for colorizer.py (GH-11472) by Cheryl Sabella · 6 years ago
  3. 4371c0a bpo-34572: change _pickle unpickling to use import rather than retrieving from sys.modules (GH-9047) by tjb900 · 6 years ago
  4. 4a7f44a bpo-34294: re module, fix wrong capturing groups in rare cases. (GH-11546) by animalize · 6 years ago
  5. 02c04f2 bpo-35704: Include correct NEWS entry (GH-11914) by Nick Coghlan · 6 years ago
  6. ef110b1 bpo-35704: Prevent test_shutil fail result when AIX is 32-bit and MAXDATA < 0x20000000 (GH-11500) by Michael Felt · 6 years ago
  7. 09fbcd6 bpo-35942: Improve the error message if __fspath__ returns invalid types in path_converter (GH-11831) by Pablo Galindo · 6 years ago
  8. ac28147 bpo-35992: Use PySequence_GetItem only if sq_item is not NULL (GH-11857) by Ivan Levkivskyi · 6 years ago
  9. 1bf8845 bpo-34720: Fix test_importlib.test_bad_traverse for AIX (GH-9391) by Michael Felt · 6 years ago
  10. 414c625 bpo-36013: delete fragile interactive shell SIGINT test (GH-11902) by Gregory P. Smith · 6 years ago
  11. 5382203 Convert range to repeat for choices() (#11889) by Raymond Hettinger · 6 years ago
  12. 38f11cc bpo-1054041: Exit properly after an uncaught ^C. (#11862) by Gregory P. Smith · 6 years ago
  13. 43766f8 bpo-35884: Add missing FIFO queue benchmark (GH-11898) by Raymond Hettinger · 6 years ago
  14. e182318 bpo-33234: Add another attribution in Whatsnew (GH-11899) by Raymond Hettinger · 6 years ago
  15. 63fa1cf bpo-32492: Add missing whatsnew entries for itemgetter and namedtuple (GH-11897) by Raymond Hettinger · 6 years ago
  16. 3ff5962 bpo-33089: Add math.dist() and math.hypot() to Whatsnew (GH-11896) by Raymond Hettinger · 6 years ago
  17. 4583525 bpo-35798: Fix duplicate SyntaxWarning: "is" with a literal. (GH-11639) by Serhiy Storchaka · 6 years ago
  18. 62e4481 bpo-15248: Emit a compiler warning when missed a comma before tuple or list. (GH-11757) by Serhiy Storchaka · 6 years ago
  19. a16ab00 bpo-36007: Bump minimum sphinx version to 1.8 (GH-11887) by Anthony Sottile · 6 years ago
  20. 3643322 bpo-35984: _xxsubinterpreters: Fix memory leak in _channel_send() (GH-11845) by Alexey Izbyshev · 6 years ago
  21. 4327705 bpo-35931: Gracefully handle SyntaxError in pdb debug command (GH-11782) by Daniel Hahler · 6 years ago
  22. 9abb725 Improve readability of random module examples (GH-11884) by Raymond Hettinger · 6 years ago
  23. 903567e Fix the versionadded info for typing.NoReturn (GH-11880) by Jack Wilsdon · 6 years ago
  24. 522630a bpo-36006: Fix versionchanged directive alignment in io module documentation (GH-11881) by Emmanuel Arias · 6 years ago
  25. 355f16f bpo-35746: Credit Colin Read and Nicolas Edet (GH-11863) by Victor Stinner · 6 years ago
  26. 3e028b2 bpo-35994: add sub dir for sub2_tree in os.walk test if symlink is not supported (GH-11853) by pxinwr · 6 years ago
  27. 5723263 bpo-30410: Documentation of sys.stdin/out/err update to reflect change in 3.6 (GH-10264) by Lysandros Nikolaou · 6 years ago
  28. 1093d42 Doc: Fix example in contextlib asynccontextmanager document (GH-8111) by kk · 6 years ago
  29. b94d4be bpo-35633: test_lockf() fails with "PermissionError: [Errno 13] Permission denied" on AIX (GH-11424) by Michael Felt · 6 years ago
  30. 8a1657b bpo-35976: Enable Windows projects to build with platform ARM32 (GH-11825) by Paul Monson · 6 years ago
  31. bb3c05d closes bpo-35991: Fix a potential double free in Modules/_randommodule.c. (GH-11849) by Zackery Spytz · 6 years ago
  32. d73ac0e Fix typo: equivalent code of `async with cond` (GH-11681) by Kevin Mai-Husan Chia · 6 years ago
  33. 2bdd585 bpo-35500: align expected and actual calls on mock.assert_called_with error message. (GH-11804) by Susan Su · 6 years ago
  34. 1dc5cb9 bpo-35887: Add make regen-importlib step to importlib._bootstrap docstring (GH-11777) by Nina Zakharenko · 6 years ago
  35. dcb68f4 bpo-35961: Fix a crash in slice_richcompare() (GH-11830) by Victor Stinner · 6 years ago
  36. 5680f65 bpo-18283: Add support for bytes to shutil.which (GH-11818) by Cheryl Sabella · 6 years ago
  37. cfd31f0 Be consistent about the use of from-imports in random module (GH-11837) by Raymond Hettinger · 6 years ago
  38. 73d6002 Remove stray quote in os.replace docstring. (GH-11556) by Anthony Sottile · 6 years ago
  39. b9d2e97 Fix potential memory leak in parsetok.c (GH-11832) by Pablo Galindo · 6 years ago
  40. 3dc67d0 bpo-35505: Skip test_imap4_host_default_value if localhost listens on IMAP port (GH-11823) by Matěj Cepl · 6 years ago
  41. 16f842d bpo-35972: _xxsubinterpreters: Fix potential integer truncation on 32-bit in channel_send() (gh-11822) by Alexey Izbyshev · 6 years ago
  42. b01786c bpo-35960: Fix dataclasses.field throwing away empty metadata. (GH-11815) by Christopher Hunt · 6 years ago
  43. a31f4cc bpo-35918: Remove broken has_key method and add test (#11819) by Rémi Lapeyre · 6 years ago
  44. 522346d Complete switch cases in symtable.c; fixes bpo-35963 (GH-11821) by Guido van Rossum · 6 years ago
  45. 3766f18 bpo-35378: Fix multiprocessing.Pool references (GH-11627) by Pablo Galindo · 6 years ago
  46. 4b250fc bpo-35766 follow-up: Add an error check to new_type_comment() (#11766) by Guido van Rossum · 6 years ago
  47. 537b6ca bpo-22062: Updated docstring and documentation for pathlib (GH-8519) by Eivind Teig · 6 years ago
  48. 9db56fb Doc sidebar: 3.6 has moved to security-fix mode. (GH-11810) by Julien Palard · 6 years ago
  49. 164686f Fix compiler warning about non initialised variable (GH-11806) by Pablo Galindo · 6 years ago
  50. 4207907 Fix division by 0 when checking for overflow in math.prod (GH-11808) by Pablo Galindo · 6 years ago
  51. 181835d Fix compiler warnings about end_col_offset and end_lineno (GH-11735) by Ivan Levkivskyi · 6 years ago
  52. 5033e31 Fix broken :ref: in asyncio docs (GH-11805) by Pablo Galindo · 6 years ago
  53. 7b2a37b Make sure the BaseManager in test_multiprocessing is cleaned up correctly (GH-11653) by Pablo Galindo · 6 years ago
  54. 613f729 Do not retain references to processes and managers in TestSyncManagerTypes (GH-11801) by Pablo Galindo · 6 years ago
  55. 8a03ff2 bpo-35833: Revise IDLE doc for control codes sent to Shell. (GH-11799) by Terry Jan Reedy · 6 years ago
  56. 2dda72a lru_cache: Add more comments. Fix comment typos. Clarify a comment. (GH-11795) by Raymond Hettinger · 6 years ago
  57. 7ab3d15 Rework tuple hash tests. (GH-10161) by Tim Peters · 6 years ago
  58. 5741c45 bpo-35903: Use autoconfig to probe for shm_open() and shm_unlink(). (#11765) by Neil Schemenauer · 6 years ago
  59. 64360ad Complete and neaten-up namedtuple's replacement of builtin function lookups with derefs (GH-11794) by Raymond Hettinger · 6 years ago
  60. d9503c3 Add What's New entry for date subclass behavior (#11790) by Paul Ganssle · 6 years ago
  61. 96d37db bpo-35615: Fix crashes when copying a Weak{Key,Value}Dictionary. (GH-11384) by Fish · 6 years ago
  62. df8d2cd bpo-35911: add cell constructor (GH-11771) by Pierre Glaser · 6 years ago
  63. 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
  64. 2848d9d bpo-35917: Test multiprocessing manager classes and shareable types (GH-11772) by Giampaolo Rodola · 6 years ago
  65. bc09851 bpo-35606: Implement math.prod (GH-11359) by Pablo Galindo · 6 years ago
  66. e9bc417 Fix url to core-mentorship mailing list (GH-11775) by Mariatta · 6 years ago
  67. cd90f6a bpo-20001: update pathlib landing image (GH-11304) by Harmandeep Singh · 6 years ago
  68. c95404f email: use dict instead of OrderedDict (GH-11709) by Inada Naoki · 6 years ago
  69. f345170 asyncio: use dict instead of OrderedDict (GH-11710) by Inada Naoki · 6 years ago
  70. 9da3583 Fix typo (micro->nano) (GH-11759) by Raymond Hettinger · 6 years ago
  71. 85e102a bpo-35299: Fixed sysconfig and distutils during PGO profiling (GH-11744) by Steve Dower · 6 years ago
  72. 69091cb bpo-35321: Set the spec origin to frozen in frozen modules (#11732) by Nina Zakharenko · 6 years ago
  73. 89427cd bpo-32417: Make timedelta arithmetic respect subclasses (#10902) by Paul Ganssle · 6 years ago
  74. ca7d293 Post 3.8.0a1 by Łukasz Langa · 6 years ago
  75. e7afe1a Merge tag 'v3.8.0a1' by Łukasz Langa · 6 years ago
  76. a8474d0 bpo-35872 and bpo-35873: Clears __PYVENV_LAUNCHER__ variable (GH-11745) by Steve Dower · 6 years ago
  77. 2f6fae6 bpo-35692: pathlib no longer raises when checking file and directory existence on drives that are not ready (GH-11746) by Steve Dower · 6 years ago
  78. e75eeb0 v3.8.0a1 by Łukasz Langa · 6 years ago
  79. aab0e57 [pydoc] Regenerate topics for v3.8.0a1 by Łukasz Langa · 6 years ago
  80. 8efa3b6 [blurb] v3.8.0a1 by Łukasz Langa · 6 years ago
  81. f75d59e bpo-35884: Add variable access benchmarking script (GH-11725) by Raymond Hettinger · 6 years ago
  82. 2c2ba05 Update macOS installer Welcome and ReadMe for 3.8 (GH-11748) by Ned Deily · 6 years ago
  83. 8ebc645 bpo-35890 : Fix some API calling consistency (GH-11742) by Minmin Gong · 6 years ago
  84. 4c70d9f bpo-34691: Compile _contextvars module into main Python library (GH-11741) by Steve Dower · 6 years ago
  85. b82bfac bpo-29734: nt._getfinalpathname handle leak (GH-740) by Mark Becwar · 6 years ago
  86. cb09047 bpo-32560: inherit the py launcher's STARTUPINFO (GH-9000) by Shiva Saxena · 6 years ago
  87. d08ea70 bpo-35845: Add order={'C', 'F', 'A'} parameter to memoryview.tobytes(). (#11730) by Stefan Krah · 6 years ago
  88. 4860f01 bpo-33895: Relase GIL while calling functions that acquire Windows loader lock (GH-7789) by Tony Roberts · 6 years ago
  89. 2de576e bpo-1104: msilib.SummaryInfo.GetProperty() truncates the string by one character (GH-4517) by Tzu-ping Chung · 6 years ago
  90. 05e9221 bpo-33316: PyThread_release_lock always fails (GH-6541) by native-api · 6 years ago
  91. 00e9c55 bpo-26256: Document algorithm speed for the Decimal module. (#4808) by Cheryl Sabella · 6 years ago
  92. e5ef45b bpo-35813: Added shared_memory submodule of multiprocessing. (#11664) by Davin Potts · 6 years ago
  93. d2b4c19 bpo-35879: Fix type comment leaks (GH-11728) by Guido van Rossum · 6 years ago
  94. ac19081 bpo-35877: Add test for while loop named expression without parentheses (GH-11726) by Emily Morehouse · 6 years ago
  95. d4fceaa bpo-35877: Make parenthesis optional for named expression in while statement (GH-11724) by Xtreak · 6 years ago
  96. 85d83ec bpo-35864: fix namedtuple._asdict() docstring (GH-11720) by Amador Pahim · 6 years ago
  97. 075de6c bpo-35861: Fix SyntaxWarning in test_named_expressions.py (GH-11722) by Joannah Nanjekye · 6 years ago
  98. 3a32e3b bpo-35766 follow-up: Kill half-support for FunctionType in PyAST_obj2mod (#11714) by Guido van Rossum · 6 years ago
  99. 325e4ba bpo-35537: Fix function name in os.posix_spawnp() errors (GH-11719) by Victor Stinner · 6 years ago
  100. 1e39b83f bpo-35537: Skip test_start_new_session() of posix_spawn (GH-11718) by Victor Stinner · 6 years ago