1. 100fafc bpo-39288: Add math.nextafter(x, y) (GH-17937) by Victor Stinner · 6 years ago
  2. 1b335ae bpo-39259: nntplib.NNTP/NNTP_SSL now reject timeout = 0 (GH-17936) by Dong-hee Na · 6 years ago
  3. 136735c bpo-39297: Update for importlib_metadata 1.4. (GH-17947) by Jason R. Coombs · 6 years ago
  4. 5d978a2 bpo-39259: nntplib.NNTP/NNTP_SSL refactoring (GH-17939) by Dong-hee Na · 6 years ago
  5. 43682f1 Fix host in address of socket.create_server example. (GH-17706) by Karthikeyan Singaravelan · 6 years ago
  6. ce54519 bpo-39292: Add missing syslog facility codes. (GH-17945) by Vinay Sajip · 6 years ago
  7. abdc634 bpo-39200: Correct the error message for min/max builtin function (GH-17814) by Dong-hee Na · 6 years ago
  8. c39b52f bpo-39259: poplib now rejects timeout = 0 (GH-17912) by Dong-hee Na · 6 years ago
  9. 4c53e63 bpo-39166: Fix trace of last iteration of async for loops (#17800) by Pablo Galindo · 6 years ago
  10. 850a885 bpo-39235: Check end_lineno and end_col_offset of AST nodes. (GH-17926) by Serhiy Storchaka · 6 years ago
  11. a796d8e bpo-39235: Fix end location for genexp in call args (GH-17925) by Guido van Rossum · 6 years ago
  12. 2f65aa4 Fix typo in test's docstring (GH-17856) by Daniel Hahler · 6 years ago
  13. ed36781 bpo-25172: Reduce scope of crypt import tests (GH-17881) by Steve Dower · 6 years ago
  14. eef1b02 Add test cases for dataclasses. (#17909) by Karthikeyan Singaravelan · 6 years ago
  15. 6c5d661 bpo-39161: Document multi-phase init modules under Py_NewInterpreter() (GH-17896) by Petr Viktorin · 6 years ago
  16. f3e5e95 bpo-39270: Remove dead assignment from config_init_module_search_paths (GH-17914) by Alex Henrie · 6 years ago
  17. a1c1be2 bpo-39272: Remove dead assignment from _ssl__SSLContext_load_verify_locations_impl (GH-17916) by Alex Henrie · 6 years ago
  18. 1a183fa bpo-39271: Remove dead assignment from pattern_subx (GH-17915) by Alex Henrie · 6 years ago
  19. 5cae042 closes bpo-39262: Use specific out-of-memory message in _sharedexception_bind. (GH-17908) by Alex Henrie · 6 years ago
  20. 2c7ed41 closes bpo-39261: Remove dead assignment from pyinit_config. (GH-17907) by Alex Henrie · 6 years ago
  21. f3a0a6b Py_DECREF: only pass filename if Py_REF_DEBUG is defined (GH-17870) by Victor Stinner · 6 years ago
  22. 5907e61 bpo-35292: Avoid calling mimetypes.init when http.server is imported (GH-17822) by An Long · 6 years ago
  23. 2e6a8ef bpo-39242: Updated the Gmane domain into news.gmane.io (GH-17903) by Dong-hee Na · 6 years ago
  24. 9a669d5 bpo-39233: Update positional-only section in the glossary (GH-17874) by Pablo Galindo · 6 years ago
  25. 998c549 bpo-39237, datetime: Remove redundant call to round from delta_new (GH-17877) by Alex Henrie · 6 years ago
  26. b821173 bpo-38871: Fix lib2to3 for filter-based statements that contain lambda (GH-17780) by Dong-hee Na · 6 years ago
  27. 13a7ee8 bpo-38615: Add timeout parameter for IMAP4 and IMAP4_SSL constructor (GH-17203) by Dong-hee Na · 6 years ago
  28. 950c679 bpo-39198: Ensure logging global lock is released on exception in isEnabledFor (GH-17689) by Derek Brown · 6 years ago
  29. 5b23f76 bpo-39239: epoll.unregister() no longer ignores EBADF (GH-17882) by Victor Stinner · 6 years ago
  30. 10ac0cd bpo-39191: Fix RuntimeWarning in asyncio test (GH-17863) by Andrew Svetlov · 6 years ago
  31. ca94677 bpo-38623: Doc: Add section for site module CLI. (GH-17858) by Inada Naoki · 6 years ago
  32. f4800b8 Doc: Change Python 2 status to EOL. (GH-17885) by Inada Naoki · 6 years ago
  33. 24bcefc bpo-39234: `enum.auto()` default initial value as 1 (GH-17878) by YoSTEALTH · 6 years ago
  34. b1ce22d bpo-39041: Fix coverage upload command for GitHub Actions (GH-17873) by Steve Dower · 6 years ago
  35. 2e9012a bpo-39234: Doc: `enum.auto()` incrementation value not specified. (GH-17872) by YoSTEALTH · 6 years ago
  36. 7b79dc9 bpo-29778: Fix incorrect NULL check in _PyPathConfig_InitDLLPath() (GH-17818) by Anthony Wee · 6 years ago
  37. 5ec91f7 bpo-39209: Manage correctly multi-line tokens in interactive mode (GH-17860) by Pablo Galindo · 6 years ago
  38. 075ebad Fix link to bpo issue in Changelog (GH-17692) by Chandan Singh · 6 years ago
  39. 7cdc31a bpo-38907: Suppress any exception when attempting to set V6ONLY. (GH-17864) by Jason R. Coombs · 6 years ago
  40. 5136e72 argument-clinic: Simplify multi-line string handling (GH-17852) by Dong-hee Na · 6 years ago
  41. ee94bdb bpo-38907: In http.server script, restore binding to IPv4 on Windows. (GH-17851) by Jason R. Coombs · 6 years ago
  42. d6c08db Minor formatting improvements and fixes to idle.rst (GH-17165) by Tal Einat · 6 years ago
  43. 94d9cfc bpo-39130: Dict reversed was added in v3.8 so should say in the doc as well (GH-17694) by Khalid Mammadov · 6 years ago
  44. abc0c4f Fix the parameter list of object. _rpow_ (#GH-16477) by HongWeipeng · 6 years ago
  45. e6ae90d Replace links in howto/pyporting.rst with sphinx references (GH-17781) by Oleg Höfling · 6 years ago
  46. 422ed16 Organise and clean test_positional_only_arg and add more tests (GH-17842) by Pablo Galindo · 6 years ago
  47. 4b66fa6 bpo-39200: Correct the error message for range() empty constructor (GH-17813) by Pablo Galindo · 6 years ago
  48. b121a4a Fix constant folding optimization for positional only arguments (GH-17837) by Anthony Sottile · 6 years ago
  49. 5ea7bb2 bpo-39152: add missing ttk.Scale.configure return value (GH-17815) by Terry Jan Reedy · 6 years ago
  50. b19c0d77 bpo-39055: Reject a trailing \n in base64.b64decode() with validate=True. (GH-17616) by Serhiy Storchaka · 6 years ago
  51. 41ec17e bpo-39056: Fix handling invalid warning category in the -W option. (GH-17618) by Serhiy Storchaka · 6 years ago
  52. 6a265f0 bpo-39057: Fix urllib.request.proxy_bypass_environment(). (GH-17619) by Serhiy Storchaka · 6 years ago
  53. ec007cb Fix SystemError when nested function has annotation on positional-only argument (GH-17826) by Anthony Sottile · 6 years ago
  54. 7dc72b8 bpo-28367: Add additional baud rates for termios (GH-13142) by Anthony Shaw · 6 years ago
  55. 3a5de51 Fix #39191: Don't spawn a task before failing (#17796) by Andrew Svetlov · 6 years ago
  56. e02ab59 bpo-38532: Add missing decrefs in PyCFuncPtr_FromDll() (GH-16857) by Zackery Spytz · 6 years ago
  57. b789202 Add link to zlib v1.1.3 vulnerability (GH-17156) by Emmanuel Nosa E · 6 years ago
  58. 4fcf5c1 bpo-39158: ast.literal_eval() doesn't support empty sets (GH-17742) by Raymond Hettinger · 6 years ago
  59. 32f1443 Update copyright year in macOS installer license copy (GH-17806) by Ned Deily · 6 years ago
  60. 946b29e Bring Python into the next decade. (GH-17801) by Benjamin Peterson · 6 years ago
  61. 7b35bef bpo-38870: Throw ValueError on invalid yield from usage (GH-17798) by Batuhan Taşkaya · 6 years ago
  62. 78018bb Remove outdated mention of hg.exe from Tools/msi/README.txt (GH-17792) by Anthony Shaw · 6 years ago
  63. 04ec7a1 bpo-39114: Fix tracing of except handlers with name binding (GH-17769) by Pablo Galindo · 6 years ago
  64. 149175c bpo-39183: Fix formatting in library/ensurepip (GH-17787) by Rafael Fontenelle · 6 years ago
  65. 5b90771 bpo-13601: always use line-buffering for sys.stderr (GH-17646) by Jendrik Seipp · 6 years ago
  66. 46abfc1 bpo-39142: Avoid converting namedtuple instances to ConvertingTuple. (GH-17773) by Vinay Sajip · 6 years ago
  67. 22424c0 Document CodeType.replace (GH-17776) by Anthony Sottile · 6 years ago
  68. 37143a8 bpo-39176: Improve error message for 'named assignment' (GH-17777) by Ned Batchelder · 6 years ago
  69. ba82ee8 Fix idlelib README typo. (GH-17770) by Terry Jan Reedy · 6 years ago
  70. 8e1f26e Minor doc fixes in urllib.parse (GH-17745) by Борис Верховский · 6 years ago
  71. d0c92e8 closes bpo-37446: resolve undefined behavior in Python/hamt.c (GH-17727) by Batuhan Taşkaya · 6 years ago
  72. dfef986 bpo-38588: Optimize list comparison. (GH-17766) by Inada Naoki · 6 years ago
  73. 2d5bf56 bpo-38588: Fix possible crashes in dict and list when calling PyObject_RichCompareBool (GH-17734) by Dong-hee Na · 6 years ago
  74. ee9ff05 bpo-34118: memoryview, range, and tuple are classes (GH-17761) by Terry Jan Reedy · 6 years ago
  75. d9e561d bpo-38610: Fix possible crashes in several list methods (GH-17022) by Zackery Spytz · 6 years ago
  76. 09c482f bpo-39019: Implement missing __class_getitem__ for SpooledTemporaryFile (GH-17560) by Batuhan Taşkaya · 6 years ago
  77. 4dc5a9d bpo-39019: Implement missing __class_getitem__ for subprocess classes (GH-17558) by Batuhan Taşkaya · 6 years ago
  78. 89aa7f0 bpo-34790: Implement deprecation of passing coroutines to asyncio.wait() (GH-16977) by Kyle Stanley · 6 years ago
  79. 88dce26 Fix handling of line numbers around finally-blocks. (#17737) by Mark Shannon · 6 years ago
  80. 226e6e7 bpo-39037: Fix lookup order of magic methods in with statement documentation (GH-17608) by Géry Ogam · 6 years ago
  81. 32a12ae Fix typos and remove deprecated deprecation warning. (GH-17741) by Antoine · 6 years ago
  82. 8f0703f bpo-39157: Skip test_pidfd_send_signal if the system does not have enough privileges to use pidfd (GH-17740) by Pablo Galindo · 6 years ago
  83. be287c3 Fix error when running with -uall in test_unparse (GH-17739) by Pablo Galindo · 6 years ago
  84. 23a226b bpo-38870: Run always tests that heavily use grammar features in test_unparse (GH-17738) by Pablo Galindo · 6 years ago
  85. cbd0408 links in importlib.metadata.rst replaced with sphinx references (GH-17730) by Oleg Höfling · 6 years ago
  86. 6c7bb38 bpo-39136: Fixed typos (GH-17720) by Gurupad Hegde · 6 years ago
  87. 98f0f04 bpo-38731: Fix function signature of quiet in docs (GH-17719) by Batuhan Taşkaya · 6 years ago
  88. ef7eaaf bpo-39144 Align ctags and etags behaviours in the makefile and include Python stdlib files (GH-17721) by Anthony Shaw · 6 years ago
  89. 9091398 Move comment about permanent generation to gcmodule.c (GH-17718) by Pablo Galindo · 6 years ago
  90. 91874bb closes bpo-39135: Remove 'time.clock()' mention in docs. (GH17709) by Michael Wayne Goodman · 6 years ago
  91. c0052f3 closes bpo-30364: Replace deprecated no_address_safety_analysis attribute. (GH-17702) by Batuhan Taşkaya · 6 years ago
  92. f460eea Update what's new with the latest GC improvements (GH-17708) by Pablo Galindo · 6 years ago
  93. 03c8e5d Update 3.9.0a2.rst (GH-17703) by Aurora Lanes · 6 years ago
  94. e28aff5 bpo-33961: Adjusted dataclasses docs to correct exceptions raised. (GH-7917) (GH-17677) by Fabio Sangiovanni · 6 years ago
  95. 527f9de Fix the miscellaneous typo (GH-17700) by cocoatomo · 6 years ago
  96. dd117c3 Update 3.9.0a2.rst - correct small typos (GH-17665) by toonarmycaptain · 6 years ago
  97. 5c7ed75 Minor C API documentation improvements. (GH-17696) by William Ayd · 6 years ago
  98. 025eeaa Fix import path for asyncio.TimeoutError (#17691) by Andrew Svetlov · 6 years ago
  99. 3c75f31 Add comment to avoid ACKS losing order (GH-17678) by Éric Araujo · 6 years ago
  100. d69cbeb Revert "bpo-38870: Remove dependency on contextlib to avoid performance regression on import (GH-17376)" (GH-17687) by Pablo Galindo · 6 years ago