1. a42ca74 bpo-40421: Add PyFrame_GetCode() function (GH-19757) by Victor Stinner · 4 years, 3 months ago
  2. b8f704d bpo-40421: Add Include/cpython/code.h header file (GH-19756) by Victor Stinner · 4 years, 3 months ago
  3. 7c59d7c bpo-40421: Add pyframe.h header file (GH-19755) by Victor Stinner · 4 years, 3 months ago
  4. 5da3526 Post 3.9.0a6 by Łukasz Langa · 4 years, 3 months ago
  5. d66685a Merge tag 'v3.9.0a6' by Łukasz Langa · 4 years, 3 months ago
  6. 5b9f498 bpo-40334: Refactor peg_generator to receive a Tokens file when building c code (GH-19745) by Pablo Galindo · 4 years, 3 months ago
  7. 3d53d87 bpo-40334: Don't skip test_parser:test_trigget_memory_error (GH-19744) by Lysandros Nikolaou · 4 years, 3 months ago
  8. d55133f bpo-40334: Catch E_EOF error, when the tokenizer returns ERRORTOKEN (GH-19743) by Lysandros Nikolaou · 4 years, 3 months ago
  9. bc1c8af Python 3.9.0a6 by Łukasz Langa · 4 years, 3 months ago
  10. 5d1f32d bpo-39995: Split test_concurrent_futures.test_crash() into sub-tests (GH-19739) by Victor Stinner · 4 years, 3 months ago
  11. 1a27501 bpo-30966: concurrent.futures.Process.shutdown() closes queue (GH-19738) by Victor Stinner · 4 years, 3 months ago
  12. b94dbd7 bpo-40334: Support PyPARSE_DONT_IMPLY_DEDENT in the new parser (GH-19736) by Pablo Galindo · 4 years, 3 months ago
  13. 2b74c83 bpo-40334: Support CO_FUTURE_BARRY_AS_BDFL in the new parser (GH-19721) by Pablo Galindo · 4 years, 3 months ago
  14. 9adccc1 bpo-30966: Add multiprocessing.SimpleQueue.close() (GH-19735) by Victor Stinner · 4 years, 3 months ago
  15. c5c4281 bpo-40375: Implement imaplib.IMAP4.unselect (GH-19712) by Dong-hee Na · 4 years, 3 months ago
  16. 91a5ae1 bpo-40217: Clean code in PyType_FromSpec_Alloc and add NEWS entry (GH-19733) by Pablo Galindo · 4 years, 3 months ago
  17. 0169d30 bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSpec types (GH-19414) by Pablo Galindo · 4 years, 4 months ago
  18. 4044c84 Add files in tests/test_peg_generator to the install target lists (GH-19723) by Pablo Galindo · 4 years, 4 months ago
  19. 6292be7 bpo-40398: Fix typing.get_args() for special generic aliases. (GH-19720) by Serhiy Storchaka · 4 years, 4 months ago
  20. caf1aad bpo-40348: Fix typos in the programming FAQ (GH-19729) by Zackery Spytz · 4 years, 4 months ago
  21. b54e46c bpo-38387: Formally document PyDoc_STRVAR and PyDoc_STR macros (GH-16607) by Brad Solomon · 4 years, 4 months ago
  22. a494caa bpo-40401: Remove duplicate pyhash.h include from pythoncore.vcxproj (GH-19725) by Ammar Askar · 4 years, 4 months ago
  23. 88499f1 bpo-40387: Improve queue join() example. (GH-19724) by Raymond Hettinger · 4 years, 4 months ago
  24. 68b352a bpo-40396: Support GenericAlias in the typing functions. (GH-19718) by Serhiy Storchaka · 4 years, 4 months ago
  25. cfaf4c0 Fix typo in Lib/typing.py (GH-19717) by Nickolena Fisher · 4 years, 4 months ago
  26. ef33712 Fix typo in object.__format__ docs (GH-19504) by Heshy Roskes · 4 years, 4 months ago
  27. 515fce4 bpo-40275: Avoid importing logging in test.support (GH-19601) by Serhiy Storchaka · 4 years, 4 months ago
  28. 1699491 bpo-40275: Avoid importing socket in test.support (GH-19603) by Serhiy Storchaka · 4 years, 4 months ago
  29. 3c8a5b4 bpo-40275: Avoid importing asyncio in test.support (GH-19600) by Serhiy Storchaka · 4 years, 4 months ago
  30. d4f3923 bpo-40279: Add some error-handling to the module initialisation docs example (GH-19705) by Cajetan Rodrigues · 4 years, 4 months ago
  31. f828077 closes bpo-40385: Remove Tools/scripts/checkpyc.py (GH-19709) by Ammar Askar · 4 years, 4 months ago
  32. 0e80b56 bpo-40334: Add What's New sections for PEP 617 and PEP 585 (GH-19704) by Guido van Rossum · 4 years, 4 months ago
  33. 5aafa54 bpo-40340: Separate examples more clearly in the programming FAQ (GH-19688) by Cajetan Rodrigues · 4 years, 4 months ago
  34. 503de71 bpo-40360: Deprecate lib2to3 module in light of PEP 617 (GH-19663) by Carl Meyer · 4 years, 4 months ago
  35. 24ffe70 bpo-40334: Rewrite test_c_parser to avoid memory leaks (GH-19694) by Lysandros Nikolaou · 4 years, 4 months ago
  36. e6f8abd bpo-38061: subprocess uses closefrom() on FreeBSD (GH-19697) by Victor Stinner · 4 years, 4 months ago
  37. 162c567 bpo-38061: os.closerange() uses closefrom() on FreeBSD (GH-19696) by Victor Stinner · 4 years, 4 months ago
  38. 4cc4d60 Expand the implementation comments (GH-19699) by Raymond Hettinger · 4 years, 4 months ago
  39. 2510494 bpo-40048: Fix _PyCode_InitOpcache() error path (GH-19691) by Victor Stinner · 4 years, 4 months ago
  40. 9f27dd3 Use Py_ssize_t instead of ssize_t (GH-19685) by Pablo Galindo · 4 years, 4 months ago
  41. 50f28de bpo-40334: Allow to run make regen-pegen without distutils (GH-19684) by Pablo Galindo · 4 years, 4 months ago
  42. 3e89251 Fix broken mkdir -p call in regen-pegen (#19695) by Guido van Rossum · 4 years, 4 months ago
  43. bc28805 bpo-40334: Use old compiler when compile mode is func_type (GH-19692) by Guido van Rossum · 4 years, 4 months ago
  44. 40ded94 bpo-40336: Refactor typing._SpecialForm (GH-19620) by Serhiy Storchaka · 4 years, 4 months ago
  45. d663d34 bpo-39983: Add test.support.print_warning() (GH-19683) by Victor Stinner · 4 years, 4 months ago
  46. 02e4484 Update ga_new to use _PyArg_CheckPositional and _PyArg_NoKwnames (GH-19679) by Dong-hee Na · 4 years, 4 months ago
  47. ebebb64 bpo-40334: Improve various PEG-Parser related stuff (GH-19669) by Lysandros Nikolaou · 4 years, 4 months ago
  48. 9e6a131 bpo-40370: Use the same compile and link args as the interpreter used in test_peg_generator (GH-19674) by Pablo Galindo · 4 years, 4 months ago
  49. 1221135 gdbinit: Use proper define syntax (GH-19557) by Florian Bruhin · 4 years, 4 months ago
  50. 8d1cbff bpo-40334: Suppress all output in test_peg_generator (GH-19675) by Lysandros Nikolaou · 4 years, 4 months ago
  51. 1df5a9e bpo-40334: Fix build errors and warnings in test_peg_generator (GH-19672) by Pablo Galindo · 4 years, 4 months ago
  52. ee40e4b bpo-40334: Don't downcast from Py_ssize_t to int (GH-19671) by Pablo Galindo · 4 years, 4 months ago
  53. 0b7829e Compile extensions in test_peg_generator with C99 (GH-19668) by Pablo Galindo · 4 years, 4 months ago
  54. 1def775 bpo-40334: Rename PyConfig.use_peg to _use_peg_parser (GH-19670) by Victor Stinner · 4 years, 4 months ago
  55. a25f3c4 bpo-40334: Fix builds outside the source directory and regenerate autoconf files (GH-19667) by Pablo Galindo · 4 years, 4 months ago
  56. ce0eacb Add @pablogsal as code owner for pegen-related files (GH-19665) by Pablo Galindo · 4 years, 4 months ago
  57. 458004b bpo-40334: Fix errors in parse_string.c with old compilers (GH-19666) by Pablo Galindo · 4 years, 4 months ago
  58. 3f8a58b PEP 617: Only run the CI with the new parser (GH-19664) by Pablo Galindo · 4 years, 4 months ago
  59. c5fc156 bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503) by Pablo Galindo · 4 years, 4 months ago
  60. a81849b bpo-39939: Add str.removeprefix and str.removesuffix (GH-18939) by sweeneyde · 4 years, 4 months ago
  61. 39652cd bpo-40260: Remove unnecessary newline in compile() call (GH-19641) by Anthony Sottile · 4 years, 4 months ago
  62. 4454057 bpo-39562: Prevent collision of future and compiler flags (GH-19230) by Batuhan Taşkaya · 4 years, 4 months ago
  63. 9b49893 bpo-40214: Fix ctypes WinDLL test with insecure flags (GH-19652) by Steve Dower · 4 years, 4 months ago
  64. 9bee32b bpo-40138: Fix Windows os.waitpid() for large exit code (GH-19637) by Victor Stinner · 4 years, 4 months ago
  65. bcc136b bpo-38329: python.org macOS installers now update Current symlink (GH-19650) by Ned Deily · 4 years, 4 months ago
  66. b310700 bpo-38360: macOS: support alternate form of -isysroot flag (GH-16480) by Joshua Root · 4 years, 4 months ago
  67. 3a69f3c bpo-38439: Add 256px IDLE icon (GH-17473) by Miro Hrončok · 4 years, 4 months ago
  68. 783a673 bpo-40164: Update macOS installer builds to use OpenSSL 1.1.1g. (GH-19642) by Ned Deily · 4 years, 4 months ago
  69. 75bedbe bpo-40327: Improve atomicity, speed, and memory efficiency of the items() loop (GH-19628) by Raymond Hettinger · 4 years, 4 months ago
  70. d3a8d61 Small improvements to the recipes and examples. (GH-19635) by Raymond Hettinger · 4 years, 4 months ago
  71. 9c82ea7 bpo-34037: Add Python API whatsnew for loop.shutdown_default_executor() (#19634) by Kyle Stanley · 4 years, 4 months ago
  72. 11a7f15 bpo-40335: Correctly handle multi-line strings in tokenize error scenarios (GH-19619) by Pablo Galindo · 4 years, 4 months ago
  73. 6a9e80a bpo-40313: speed up bytes.hex() (GH-19594) by sweeneyde · 4 years, 4 months ago
  74. bba760e Fix uninitialized struct member (GH-19589) by Raymond Hettinger · 4 years, 4 months ago
  75. a25a04f bpo-39942:Fix failure in `TypeVar` when missing `__name__` (GH-19616) by HongWeipeng · 4 years, 4 months ago
  76. eba9f61 bpo-40330: Fix utf-8 size check in ShareableList (GH-19606) by Antoine Pitrou · 4 years, 4 months ago
  77. 5dd21f5 bpo-39849: Enable assertions in _testcapimodule.c and _testinternalcapi.c (GH-19623) by Hai Shi · 4 years, 4 months ago
  78. 9b0b5d2 bpo-40260: Revert breaking changes made in modulefinder (GH-19595) by Barry · 4 years, 4 months ago
  79. df8913f Fix typo in Lib/tracepack.py (GH-19605) by Galden · 4 years, 4 months ago
  80. 3955da8 ignore Modules/python.exp on AIX (autogenerated) (GH-19607) by Batuhan Taşkaya · 4 years, 4 months ago
  81. 8aea4b3 bpo-40148: Add PurePath.with_stem() (GH-19295) by Tim Hoffmann · 4 years, 4 months ago
  82. c8f1715 bpo-38891: avoid quadratic item access performance of ShareableList (GH-18996) by Thomas Krennwallner · 4 years, 4 months ago
  83. 1ac6e37 bpo-39207: Spawn workers on demand in ProcessPoolExecutor (GH-19453) by Kyle Stanley · 4 years, 4 months ago
  84. c12375a bpo-39285: Clarify example for PurePath.match (GH-19458) by Tim Lo · 4 years, 4 months ago
  85. 4fe0020 bpo-40325: Deprecate set object support in random.sample() (GH-19591) by Raymond Hettinger · 4 years, 4 months ago
  86. 482259d bpo-27635: Fix pickle documentation about `__new__` not being called. (GH-19269) by Furkan Önder · 4 years, 4 months ago
  87. 696136b bpo-35113: Fix inspect.getsource to return correct source for inner classes (#10307) by Karthikeyan Singaravelan · 4 years, 4 months ago
  88. ce57883 Add spaces around the ":=" operator in ast_unparse.c (GH-19568) by Hakan Çelik · 4 years, 4 months ago
  89. 2b56031 bpo-40178: Convert the remaining os functions to Argument Clinic. (GH-19360) by Serhiy Storchaka · 4 years, 4 months ago
  90. 12446e6 bpo-40179: Fix translation of #elif in Argument Clinic (GH-19364) by Serhiy Storchaka · 4 years, 4 months ago
  91. fb94040 bpo-35967: Skip test with `uname -p` on Android (GH-19577) by Chih-Hsuan Yen · 4 years, 4 months ago
  92. 7e64414 bpo-40257: Improve help for the typing module (GH-19546) by Serhiy Storchaka · 4 years, 4 months ago
  93. c606624 Fix two typos in multiprocessing (GH-19571) by Galden · 4 years, 4 months ago
  94. 87502dd bpo-40286: Use random.randbytes() in tests (GH-19575) by Victor Stinner · 4 years, 4 months ago
  95. 223221b bpo-40286: Makes simpler the relation between randbytes() and getrandbits() (GH-19574) by Serhiy Storchaka · 4 years, 4 months ago
  96. 5b1d918 bpo-39894: Route calls from pathlib.Path.samefile() to os.stat() via the path accessor (GH-18836) by Barney Gale · 4 years, 4 months ago
  97. c746c4f bpo-39897: Remove needless `Path(self.parent)` call, which makes `is_mount()` misbehave in `Path` subclasses. (GH-18839) by Barney Gale · 4 years, 4 months ago
  98. 75a3378 bpo-40282: Allow random.getrandbits(0) (GH-19539) by Antoine Pitrou · 4 years, 4 months ago
  99. d7c657d bpo-40302: UTF-32 encoder SWAB4() macro use a|b rather than a+b (GH-19572) by Victor Stinner · 4 years, 4 months ago
  100. 1a1bd2e bpo-40302: Replace PY_INT64_T with int64_t (GH-19573) by Victor Stinner · 4 years, 4 months ago