1. 674ee12 bpo-35397: Remove deprecation and document urllib.parse.unwrap (GH-11481) by Rémi Lapeyre · 6 years ago
  2. 1f39c28 bpo-37035: Don't log OSError (GH-13548) by Andrew Svetlov · 6 years ago
  3. ff6b2e6 bpo-37047: Refactor AsyncMock setup logic for autospeccing (GH-13574) by Xtreak · 6 years ago
  4. 431b540 bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528) by Yury Selivanov · 6 years ago
  5. 16cefb0 bpo-37028: asyncio REPL; activated via 'python -m asyncio'. (GH-13472) by Yury Selivanov · 6 years ago
  6. 71c52e3 bpo-36829: Add _PyErr_WriteUnraisableMsg() (GH-13488) by Victor Stinner · 6 years ago
  7. 2f0bfd2 Add one more test for typing.Final (GH-13588) by Ivan Levkivskyi · 6 years ago
  8. b821868 bpo-36772 Allow lru_cache to be used as decorator without making a function call (GH-13048) by Raymond Hettinger · 6 years ago
  9. aaf47ca bpo-37053: handle strings like u"bar" correctly in Tools/parser/unparse.py (GH-13583) by Chih-Hsuan Yen · 6 years ago
  10. 91f4380 bpo-36785: PEP 574 implementation (GH-7076) by Antoine Pitrou · 6 years ago
  11. 22ccb0b Fix highlighting in importlib.metadata docs (GH-13575) by Anthony Sottile · 6 years ago
  12. 180dc1b bpo-28866: No type cache for types with specialized mro, invalidation is hard. (#13157) by Julien Palard · 6 years ago
  13. 135c6a5 bpo-37049: PEP 589: Add TypedDict to typing module (GH-13573) by Ivan Levkivskyi · 6 years ago
  14. b891c46 bpo-37046: PEP 586: Add Literal to typing module (#13572) by Ivan Levkivskyi · 6 years ago
  15. f367242 bpo-37045: PEP 591: Add final qualifiers to typing module (GH-13571) by Ivan Levkivskyi · 6 years ago
  16. 47dd2f9 bpo-37017: PyObject_CallMethodObjArgs uses LOAD_METHOD optimization (GH-13516) by Michael J. Sullivan · 6 years ago
  17. 7114c65 Docs: FIX broken links. (GH-13491) by Julien Palard · 6 years ago
  18. f7fba6c bpo-34632 fix buildbots and remove artifact (GH-13566) by Jason R. Coombs · 6 years ago
  19. af57074 📝 Add a GitHub-specific security page (GH-13526) by Sviatoslav Sydorenko · 6 years ago
  20. c3738cf bpo-34632: fix installation of importlib.metadata (#13563) by Chih-Hsuan Yen · 6 years ago
  21. 81bb97d bpo-37038: Make idlelib.run runnable; add test clause (GH-13560) by Terry Jan Reedy · 6 years ago
  22. 1bbf7b6 bpo-34632: Add importlib.metadata (GH-12547) by Jason R. Coombs · 6 years ago
  23. 6dbbe74 bpo-36829: Document test.support.catch_unraisable_exception() (GH-13554) by Victor Stinner · 6 years ago
  24. a9f05d6 bpo-37032: Add CodeType.replace() method (GH-13542) by Victor Stinner · 6 years ago
  25. 561612d bpo-37021: Port _randommodule to the argument clinic (GH-13532) by Pablo Galindo · 6 years ago
  26. 1c9debd bpo-35907: Fix typo in the NEWS entry (GH-13559) by Victor Stinner · 6 years ago
  27. 4585603 bpo-36969: Make PDB args command display positional only arguments (GH-13459) by Rémi Lapeyre · 6 years ago
  28. deffee5 bpo-35907: Clarify the NEWS entry (GH-13523) by Victor Stinner · 6 years ago
  29. 6de4574 bpo-37023: Skip test_gdb under PGO (GH-13555) by Steve Dower · 6 years ago
  30. 14738ff bpo-8138: Initialize wsgiref's SimpleServer as single-threaded (GH-12977) by Berker Peksag · 6 years ago
  31. b1fc417 bpo-21536: Fix configure.ac for LIBPYTHON on Android/Cygwin (GH-13552) by E. M. Bray · 6 years ago
  32. bc66fac bpo-36721: Fix pkg-config symbolic links on "make install" (GH-13551) by Victor Stinner · 6 years ago
  33. 51394b8 bpo-36511: Ensure error code propagates out of batch files (GH-13529) by Paul Monson · 6 years ago
  34. c994c8f bpo-21536: On Cygwin, C extensions must be linked with libpython (GH-13549) by E. M. Bray · 6 years ago
  35. 438a12d bpo-36710: Add tstate parameter in ceval.c (GH-13547) by Victor Stinner · 6 years ago
  36. 13d4e6a Fix typos in Doc/library/email.generator.rst documentation (GH-13539) by Nick Sung · 6 years ago
  37. b49858b bpo-37031: Fix PyOS_AfterFork_Child() (GH-13537) by Victor Stinner · 6 years ago
  38. b3a9843 Support Py_UNUSED() on clang (GH-13544) by Victor Stinner · 6 years ago
  39. b4bdecd bpo-36710: Add tstate parameter in errors.c (GH-13540) by Victor Stinner · 6 years ago
  40. d8613dc bpo-37031: Reuse _PyRuntime.main_thread in signalmodule.c (GH-13538) by Victor Stinner · 6 years ago
  41. 2a37f8f bpo-36045: builtins.help() now prefixes `async` for async functions (GH-12010) by Dan Rose · 6 years ago
  42. cf7d5ef Fix typo: decription -> description (GH-13543) by Xtreak · 6 years ago
  43. c95c93d bpo-20285: Improve help docs for object (GH-4759) by Cheryl Sabella · 6 years ago
  44. f1e17e9 bpo-34626: Document creating heap types from the C-API (GH-9154) by Petr Viktorin · 6 years ago
  45. cccc11b Fix warning in _testembed.c (GH-13533) by Pablo Galindo · 6 years ago
  46. 608876b bpo-23395: Fix PyErr_SetInterrupt if the SIGINT signal is ignored or not handled (GH-7778) by Matěj Cepl · 6 years ago
  47. b82e17e bpo-36842: Implement PEP 578 (GH-12613) by Steve Dower · 6 years ago
  48. e788057 bpo-36797: Reduce levels of indirection in outdated distutils docs (#13462) by Nick Coghlan · 6 years ago
  49. 394119a bpo-37008: make mock_open handle able to honor next() (GH-13492) by Damien Nadé · 6 years ago
  50. 51aa35e bpo-33164: update blake2 implementation (GH-6286) by David Carlier · 6 years ago
  51. 20e1e25 bpo-36763: Fix _PyPreConfig_InitCompatConfig() utf8_mode (GH-13518) by Victor Stinner · 6 years ago
  52. bc2aa81 bpo-18748: _pyio.IOBase emits unraisable exception (GH-13512) by Victor Stinner · 6 years ago
  53. 0a8e572 bpo-36721: Add --embed option to python-config (GH-13500) by Victor Stinner · 6 years ago
  54. ef5bb25 bpo-27737: Allow whitespace only headers encoding (#13478) by Batuhan Taşkaya · 6 years ago
  55. 6bc5917 bpo-35091: Objects/listobject.c: Replace overflow checks in gallop fu… (GH-10202) by Alexey Izbyshev · 6 years ago
  56. df22c03 bpo-36829: PyErr_WriteUnraisable() normalizes exception (GH-13507) by Victor Stinner · 6 years ago
  57. 5edcf26 bpo-36763: Rename private Python initialization functions (GH-13511) by Victor Stinner · 6 years ago
  58. cfb241b bpo-36941: Project file fixups for Windows ARM64 (GH-13477) by Paul Monson · 6 years ago
  59. 022be02 bpo-36763: Add _PyPreConfig._config_init (GH-13481) by Victor Stinner · 6 years ago
  60. e4d300e bpo-36829: Add test.support.catch_unraisable_exception() (GH-13490) by Victor Stinner · 6 years ago
  61. 904e34d bpo-24882: Let ThreadPoolExecutor reuse idle threads before creating new thread (#6375) by Sean · 6 years ago
  62. 2a3a2ec bpo-33110: Catch errors raised when running add_done_callback on already completed futures (GH-13141) by Sam Martin · 6 years ago
  63. d8a82e2 bpo-36878: Only allow text after `# type: ignore` if first character ASCII (GH-13504) by Michael J. Sullivan · 6 years ago
  64. 0c2b6a3 bpo-35907, CVE-2019-9948: urllib rejects local_file:// scheme (GH-13474) by Victor Stinner · 6 years ago
  65. 2ddbd21 bpo-34616: Document top level async in whatsnew/3.8. (GH-13484) by Matthias Bussonnier · 6 years ago
  66. b121f63 bpo-36084: Add native thread ID (TID) to threading.Thread (GH-13463) by Jake Tesler · 6 years ago
  67. b3be407 bpo-33482: fix codecs.StreamRecoder.writelines (GH-6779) by Jelle Zijlstra · 6 years ago
  68. 933e150 bpo-36878: Track extra text added to 'type: ignore' in the AST (GH-13479) by Michael J. Sullivan · 6 years ago
  69. 4c7a46e bpo-36972: Add SupportsIndex (GH-13448) by Paul Dagnelie · 6 years ago
  70. 33e71e0 bpo-31862: Port binascii to PEP 489 multiphase initialization (GH-4108) by Marcel Plch · 6 years ago
  71. 77aa396 bpo-36907: fix refcount bug in _PyStack_UnpackDict() (GH-13381) by Jeroen Demeyer · 6 years ago
  72. b892d3e bpo-36994: add test for profiling method_descriptor with **kwargs (GH-13461) by Jeroen Demeyer · 6 years ago
  73. ef9d9b6 bpo-36829: Add sys.unraisablehook() (GH-13187) by Victor Stinner · 6 years ago
  74. 2725cb0 bpo-36948: Fix test_urlopener_retrieve_file on Windows (GH-13476) by Berker Peksag · 6 years ago
  75. eca18aa bpo-34616: Fix code style and unbreak buildbots (GH-13473) by Yury Selivanov · 6 years ago
  76. 7abf8c6 bpo-25652: Fix __rmod__ of UserString (GH-13326) by Batuhan Taşkaya · 6 years ago
  77. 565b4f1 bpo-34616: Add PyCF_ALLOW_TOP_LEVEL_AWAIT to allow top-level await (GH-13148) by Matthias Bussonnier · 6 years ago
  78. aa32a7e bpo-23378: Add an extend action to argparse (GH-13305) by Batuhan Taşkaya · 6 years ago
  79. d5c120f bpo-36035: fix Path.rglob for broken links (GH-11988) by Jörg Stucke · 6 years ago
  80. ccb7ca7 bpo-36929: Modify io/re tests to allow for missing mod name (#13392) by Max Bernstein · 6 years ago
  81. ad098b6 Annotate the unexplained assignment in exception unbinding (GH-11448) by Chris Angelico · 6 years ago
  82. 4fb1502 bpo-36648: fix mmap issue for VxWorks (GH-12394) by Lihua Zhao · 6 years ago
  83. f2d7ac7 bpo-31904: Add posix module support for VxWorks (GH-12118) by pxinwr · 6 years ago
  84. d12e757 Revert "bpo-36084: Add native thread ID to threading.Thread objects (GH-11993)" (GH-13458) by Victor Stinner · 6 years ago
  85. 925af1d bpo-36965: Fix includes in main.c on Windows with non-MSC compilers (GH-13421) by Erik Janssens · 6 years ago
  86. e7cb23b Fix RuntimeWarning in unittest.mock asyncio example (GH-13449) by Xtreak · 6 years ago
  87. d0ebf13 bpo-36932: use proper deprecation-removed directive (GH-13349) by Matthias Bussonnier · 6 years ago
  88. 3099ae4 Remove workaround for defaults in namedtuple now that we have the defaults parameter (GH-13263) by Andre Delfino · 6 years ago
  89. 6220c02 bpo-35563: Add reference links to warnings.rst (GH-11289) by Cheryl Sabella · 6 years ago
  90. bf457c7 bpo-36969: Make PDB args command display keyword only arguments (GH-13452) by Rémi Lapeyre · 6 years ago
  91. 1a3faf9 bpo-36952: Remove the bufsize parameter in fileinput.input(). (GH-13400) by Matthias Bussonnier · 6 years ago
  92. 4011d86 bpo-23896: Add a grammar where exec isn't a stmt (#13272) by Batuhan Taşkaya · 6 years ago
  93. c09a9f5 bpo-36888: Add multiprocessing.parent_process() (GH-13247) by Thomas Moreau · 6 years ago
  94. 5ae1c84 bpo-36949: Implement __repr__ on WeakSet (GH-13415) by Batuhan Taşkaya · 6 years ago
  95. 77b3b77 bpo-26467: Adds AsyncMock for asyncio Mock library support (GH-9296) by Lisa Roach · 6 years ago
  96. 0f72147 bpo-36763: Fix _PyRuntime.preconfig.coerce_c_locale (GH-13444) by Victor Stinner · 6 years ago
  97. 522ccef bpo-22865: Expand on documentation for the pty.spawn function (GH-11980) by Geoff Shannon · 6 years ago
  98. 45a24b8 Pass _asyncio_internal=True into stream tests on windows (#13442) by Andrew Svetlov · 6 years ago
  99. 425717f bpo-36763: Fix encoding/locale tests in test_embed (GH-13443) by Victor Stinner · 6 years ago
  100. 9932fd9 bpo-35721: Close socket pair if Popen in _UnixSubprocessTransport fails (GH-11553) by Niklas Fiekas · 6 years ago