1. 3dc67d0 bpo-35505: Skip test_imap4_host_default_value if localhost listens on IMAP port (GH-11823) by Matěj Cepl · 6 years ago
  2. 16f842d bpo-35972: _xxsubinterpreters: Fix potential integer truncation on 32-bit in channel_send() (gh-11822) by Alexey Izbyshev · 6 years ago
  3. b01786c bpo-35960: Fix dataclasses.field throwing away empty metadata. (GH-11815) by Christopher Hunt · 6 years ago
  4. a31f4cc bpo-35918: Remove broken has_key method and add test (#11819) by Rémi Lapeyre · 6 years ago
  5. 3766f18 bpo-35378: Fix multiprocessing.Pool references (GH-11627) by Pablo Galindo · 6 years ago
  6. 537b6ca bpo-22062: Updated docstring and documentation for pathlib (GH-8519) by Eivind Teig · 6 years ago
  7. 4207907 Fix division by 0 when checking for overflow in math.prod (GH-11808) by Pablo Galindo · 6 years ago
  8. 7b2a37b Make sure the BaseManager in test_multiprocessing is cleaned up correctly (GH-11653) by Pablo Galindo · 6 years ago
  9. 613f729 Do not retain references to processes and managers in TestSyncManagerTypes (GH-11801) by Pablo Galindo · 6 years ago
  10. 8a03ff2 bpo-35833: Revise IDLE doc for control codes sent to Shell. (GH-11799) by Terry Jan Reedy · 6 years ago
  11. 7ab3d15 Rework tuple hash tests. (GH-10161) by Tim Peters · 6 years ago
  12. 64360ad Complete and neaten-up namedtuple's replacement of builtin function lookups with derefs (GH-11794) by Raymond Hettinger · 6 years ago
  13. 96d37db bpo-35615: Fix crashes when copying a Weak{Key,Value}Dictionary. (GH-11384) by Fish · 6 years ago
  14. df8d2cd bpo-35911: add cell constructor (GH-11771) by Pierre Glaser · 6 years ago
  15. 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
  16. 2848d9d bpo-35917: Test multiprocessing manager classes and shareable types (GH-11772) by Giampaolo Rodola · 6 years ago
  17. bc09851 bpo-35606: Implement math.prod (GH-11359) by Pablo Galindo · 6 years ago
  18. c95404f email: use dict instead of OrderedDict (GH-11709) by Inada Naoki · 6 years ago
  19. f345170 asyncio: use dict instead of OrderedDict (GH-11710) by Inada Naoki · 6 years ago
  20. 85e102a bpo-35299: Fixed sysconfig and distutils during PGO profiling (GH-11744) by Steve Dower · 6 years ago
  21. 69091cb bpo-35321: Set the spec origin to frozen in frozen modules (#11732) by Nina Zakharenko · 6 years ago
  22. 89427cd bpo-32417: Make timedelta arithmetic respect subclasses (#10902) by Paul Ganssle · 6 years ago
  23. e7afe1a Merge tag 'v3.8.0a1' by Łukasz Langa · 6 years ago
  24. a8474d0 bpo-35872 and bpo-35873: Clears __PYVENV_LAUNCHER__ variable (GH-11745) by Steve Dower · 6 years ago
  25. 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
  26. aab0e57 [pydoc] Regenerate topics for v3.8.0a1 by Łukasz Langa · 6 years ago
  27. b82bfac bpo-29734: nt._getfinalpathname handle leak (GH-740) by Mark Becwar · 6 years ago
  28. d08ea70 bpo-35845: Add order={'C', 'F', 'A'} parameter to memoryview.tobytes(). (#11730) by Stefan Krah · 6 years ago
  29. 2de576e bpo-1104: msilib.SummaryInfo.GetProperty() truncates the string by one character (GH-4517) by Tzu-ping Chung · 6 years ago
  30. e5ef45b bpo-35813: Added shared_memory submodule of multiprocessing. (#11664) by Davin Potts · 6 years ago
  31. ac19081 bpo-35877: Add test for while loop named expression without parentheses (GH-11726) by Emily Morehouse · 6 years ago
  32. d4fceaa bpo-35877: Make parenthesis optional for named expression in while statement (GH-11724) by Xtreak · 6 years ago
  33. 85d83ec bpo-35864: fix namedtuple._asdict() docstring (GH-11720) by Amador Pahim · 6 years ago
  34. 075de6c bpo-35861: Fix SyntaxWarning in test_named_expressions.py (GH-11722) by Joannah Nanjekye · 6 years ago
  35. 1e39b83f bpo-35537: Skip test_start_new_session() of posix_spawn (GH-11718) by Victor Stinner · 6 years ago
  36. 80c5dfe bpo-35537: Add setsid parameter to os.posix_spawn() and os.posix_spawnp() (GH-11608) by Joannah Nanjekye · 6 years ago
  37. ffdf1c3 Consistently move the misses update to just before the user function call (GH-11715) by Raymond Hettinger · 6 years ago
  38. dcfcd14 bpo-35766: Merge typed_ast back into CPython (GH-11645) by Guido van Rossum · 6 years ago
  39. 0bb4bdf bpo-35864: Replace OrderedDict with regular dict in namedtuple() (#11708) by Raymond Hettinger · 6 years ago
  40. 9f3f093 bpo-34003: Use dict instead of OrderedDict in csv.DictReader (GH-8014) by Michael Selik · 6 years ago
  41. a1f9a33 bpo-35854: Fix EnvBuilder and --symlinks in venv on Windows (GH-11700) by Steve Dower · 6 years ago
  42. bafa848 subprocess: close pipes/fds by using ExitStack (GH-11686) by Giampaolo Rodola · 6 years ago
  43. 808180c Fast path for int inputs to math.dist() and math.hypot() (GH-11692) by Raymond Hettinger · 6 years ago
  44. 81d04bc Fix docstr/comment typos in _use_posix_spawn(). (GH-11684) by Gregory P. Smith · 6 years ago
  45. d8080c0 bpo-35780: Fix errors in lru_cache() C code (GH-11623) by Raymond Hettinger · 6 years ago
  46. 4e02f8f8 bpo-35797: Fix default executable used by the multiprocessing module (GH-11676) by Steve Dower · 6 years ago
  47. 62c35a8 bpo-35814: Allow same r.h.s. in annotated assignments as in normal ones (GH-11667) by Ivan Levkivskyi · 6 years ago
  48. 8f59ee0 bpo-35224: PEP 572 Implementation (#10497) by Emily Morehouse · 6 years ago
  49. 1fd06f1 bpo-35717: Fix KeyError exception raised when using enums and compile (GH-11523) by Rémi Lapeyre · 6 years ago
  50. fd628cf bpo-35767: Fix unittest.loader to allow partials as test_functions (#11600) by Jason Fried · 6 years ago
  51. f6243ac bpo-35537: subprocess can use posix_spawn with pipes (GH-11575) by Victor Stinner · 6 years ago
  52. da6424e bpo-35726: Prevented QueueHandler formatting from affecting other handlers (GH-11537) by Manjusaka · 6 years ago
  53. 28f6cb3 bpo-35683: Improve Azure Pipelines steps (GH-11493) by Steve Dower · 6 years ago
  54. 9932a22 bpo-33416: Add end positions to Python AST (GH-11605) by Ivan Levkivskyi · 6 years ago
  55. 2433a2a bpo-35782: Fix error message in randrange (GH-11620) by Kumar Akshay · 6 years ago
  56. e9b185f2a bpo-35794: Catch PermissionError in test_no_such_executable (GH-11635) by Pablo Galindo · 6 years ago
  57. b238545 bpo-35772: Fix test_tarfile on ppc64 (GH-11606) by Victor Stinner · 6 years ago
  58. 222d303 bpo-20239: Allow repeated deletion of unittest.mock.Mock attributes (#11057) by Pablo Galindo · 6 years ago
  59. b2dc4a3 bpo-35699: fix distuils cannot detect Build Tools 2017 anymore (GH-11495) by Marc Schlaich · 6 years ago
  60. 2cf1dda bpo-35770: Fix off-by-1 error. (#11618) by Terry Jan Reedy · 6 years ago
  61. 7417622 bpo-35733: Make isinstance(ast.Constant(boolean), ast.Num) be false. (GH-11547) by Anthony Sottile · 6 years ago
  62. 39ed289 bpo-35770: IDLE macosx deletes Options => Configure IDLE. (GH-11614) by Terry Jan Reedy · 6 years ago
  63. 34de2d3 bpo-35045: Accept TLSv1 default in min max test (GH-11510) by Christian Heimes · 6 years ago
  64. 36d9e9a bpo-35283: Update the docstring of threading.Thread.join method (GH-11596) by Dong-hee Na · 6 years ago
  65. a902239 bpo-35769: Change IDLE's name for new files from 'Untitled' to 'untitled' (GH-11602) by Terry Jan Reedy · 6 years ago
  66. 3bcbedc bpo-34850: Emit a warning for "is" and "is not" with a literal. (GH-9642) by Serhiy Storchaka · 6 years ago
  67. e55cf02 bpo-35730: IDLE - test squeezer reload() by checking load_font() (GH-11585) by Tal Einat · 6 years ago
  68. 56c1605 bpo-34161: Update idlelib/NEWS.txt to 2019 Jan 17 (GH-11597) by Terry Jan Reedy · 6 years ago
  69. 17f05bb bpo-33687: Fix call to os.chmod() in uu.decode() (GH-7282) by Timo Furrer · 6 years ago
  70. f1d8e7c bpo-35701: Added __weakref__ slot to uuid.UUID (GH-11570) by David H · 6 years ago
  71. 89669ff bpo-35283: Add deprecation warning for Thread.isAlive (GH-11454) by Dong-hee Na · 6 years ago
  72. 8c34956 Revert "bpo-35537: subprocess can now use os.posix_spawnp (GH-11579)" (GH-11582) by Victor Stinner · 6 years ago
  73. 0785889 bpo-35537: subprocess can now use os.posix_spawnp (GH-11579) by Victor Stinner · 6 years ago
  74. 92b8322 bpo-35674: Add os.posix_spawnp() (GH-11554) by Joannah Nanjekye · 6 years ago
  75. 9daecf3 bpo-35537: subprocess uses os.posix_spawn in some cases (GH-11452) by Victor Stinner · 6 years ago
  76. a37f524 bpo-35746: Fix segfault in ssl's cert parser (GH-11569) by Christian Heimes · 6 years ago
  77. c9f872b bpo-23846: Fix ProactorEventLoop._write_to_self() (GH-11566) by Victor Stinner · 6 years ago
  78. 3607ef4 bpo-35742: Fix test_envar_unimportable in test_builtin. (GH-11561) by Serhiy Storchaka · 6 years ago
  79. b91140f bpo-11555: Enhance IocpProactor.close() log again (GH-11563) by Victor Stinner · 6 years ago
  80. b1e4573 bpo-34323: Enhance IocpProactor.close() log (GH-11555) by Victor Stinner · 6 years ago
  81. efcf82f bpo-35619: Improve support of custom data descriptors in help() and pydoc. (GH-11366) by Serhiy Storchaka · 6 years ago
  82. 454b3d4 bpo-35066: _dateime.datetime.strftime copies trailing '%' (GH-10692) by MichaelSaah · 6 years ago
  83. 5bb146a bpo-35730: Disable IDLE test_reload assertion. (GH-11543) by Terry Jan Reedy · 6 years ago
  84. 39a33e9 bpo-35196: Optimize Squeezer's write() interception (GH-10454) by Tal Einat · 6 years ago
  85. 995d9b9 bpo-16806: Fix `lineno` and `col_offset` for multi-line string tokens (GH-10021) by Anthony Sottile · 6 years ago
  86. f1ec3ce bpo-35634: Raise an error when first passed kwargs contains duplicated keys. (GH-11438) by Serhiy Storchaka · 6 years ago
  87. 58159ef bpo-35494: Improve syntax error messages for unbalanced parentheses in f-string. (GH-11161) by Serhiy Storchaka · 6 years ago
  88. 44cc482 bpo-33817: Fix _PyBytes_Resize() for empty bytes object. (GH-11516) by Serhiy Storchaka · 6 years ago
  89. cb08a71 bpo-34838: Use subclass_of for math.dist. (GH-9659) by Ammar Askar · 6 years ago
  90. 2a39d25 bpo-35582: Argument Clinic: Optimize the "all boring objects" case. (GH-11520) by Serhiy Storchaka · 6 years ago
  91. 4fa9591 bpo-35582: Argument Clinic: inline parsing code for positional parameters. (GH-11313) by Serhiy Storchaka · 6 years ago
  92. c5dc60e bpo-24746: Fix doctest failures when running the testsuite with -R (#11501) by Pablo Galindo · 6 years ago
  93. fb2c346 asyncio: __del__() keep reference to warnings.warn (GH-11491) by Victor Stinner · 6 years ago
  94. 9b07681 IocpProactor: prevent modification if closed (GH-11494) by Victor Stinner · 6 years ago
  95. a306bdd Distutils no longer needs to remain compatible with 2.3 (GH-11423) by Miro Hrončok · 6 years ago
  96. cbb1645 bpo-24746: Avoid stripping trailing whitespace in doctest fancy diff (#10639) by Sanyam Khurana · 6 years ago
  97. c24c6c2 bpo-35568: add 'raise_signal' function (GH-11335) by Vladimir Matveev · 6 years ago
  98. 80fda71 bpo-35682: Fix _ProactorBasePipeTransport._force_close() (GH-11462) by Victor Stinner · 6 years ago
  99. ddd7c42 bpo-33717: pythoninfo logs information of all clocks (GH-11460) by Victor Stinner · 6 years ago
  100. df8e1fb bpo-32710: test_asyncio: test_sendfile reset policy (GH-11461) by Victor Stinner · 6 years ago