1. 360371f bpo-40291: Add support for CAN_J1939 sockets (GH-19538) by karl ding · 5 years ago
  2. fd33cdb Fix plural typo in documentation (GH-19799) by Alex Povel · 5 years ago
  3. 84724dd bpo-1635741: Port _stat module to multiphase initialization (GH-19798) by Dong-hee Na · 5 years ago
  4. 113feb3 bpo-40328: Add tool for generating cjk mapping headers (GH-19602) by Dong-hee Na · 5 years ago
  5. 2d87577 bpo-40286: Remove C implementation of Random.randbytes() (GH-19797) by Victor Stinner · 5 years ago
  6. e3dfb9b bpo-9216: Expose OpenSSL FIPS_mode() as _hashlib.get_fips_mode() (GH-19703) by Victor Stinner · 5 years ago
  7. e5963ee What's New in Python 3.9: Reorganize C API Changes (GH-19794) by Victor Stinner · 5 years ago
  8. 5769724 bpo-40228: More robust frame.setlineno. (GH-19437) by Mark Shannon · 5 years ago
  9. ec9bea4 bpo-40436: Fix code parsing gdb version (GH-19792) by Victor Stinner · 5 years ago
  10. 9a8c131 bpo-40428: Cleanup free list part of C API Changes doc (GH-19793) by Victor Stinner · 5 years ago
  11. 5089bcd Add missing sys import to socket_helper.py (GH-19791) by Pablo Galindo · 5 years ago
  12. 4db245e bpo-40334: refactor and cleanup for the PEG generators (GH-19775) by Pablo Galindo · 5 years ago
  13. 9b64ef3 bpo-40432 Fix MSBuild project for Pegen grammars (#GH-9785) by Anthony Shaw · 5 years ago
  14. bfb1cf4 bpo-40275: Move transient_internet from test.support to socket_helper (GH-19711) by Serhiy Storchaka · 5 years ago
  15. bb4a585 bpo-40428: Remove references to Py*_ClearFreeList in the docs (GH-19783) by Zackery Spytz · 5 years ago
  16. 6d65087 bpo-40334: Disallow invalid single statements in the new parser (GH-19774) by Lysandros Nikolaou · 5 years ago
  17. a4dfe8e bpo-39995: Fix concurrent.futures _ThreadWakeup (GH-19760) by Victor Stinner · 5 years ago
  18. 7036477 bpo-40421: Add PyFrame_GetBack() function (GH-19765) by Victor Stinner · 5 years ago
  19. 66abe98 bpo-40275: Move requires_hashdigest() to test.support.hashlib_helper (GH-19716) by Hai Shi · 5 years ago
  20. 2208134 bpo-40334: Explicitly cast to int in pegen.c to fix a compiler warning (GH-19779) by Pablo Galindo · 5 years ago
  21. 4386b90 bpo-40429: PyThreadState_GetFrame() returns a strong ref (GH-19781) by Victor Stinner · 5 years ago
  22. 37af21b bpo-40334: Fix shifting of nested f-strings in the new parser (GH-19771) by Lysandros Nikolaou · 5 years ago
  23. ae00a5a bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769) by Victor Stinner · 5 years ago
  24. cc0dc7e bpo-40429: Refactor super_init() (GH-19776) by Victor Stinner · 5 years ago
  25. f7bbf58 bpo-38880: List interpreters associated with a channel end (GH-17323) by Lewis Gaul · 5 years ago
  26. 49f70db bpo-40431: Fix syntax typo in turtledemo (GH-19777) by Miro Hrončok · 5 years ago
  27. 8852ad4 bpo-40429: PyFrame_GetCode() now returns a strong reference (GH-19773) by Victor Stinner · 5 years ago
  28. 5e8c691 bpo-32604: Add support for a "default" arg in channel_recv(). (GH-19770) by Eric Snow · 5 years ago
  29. 6d86a23 bpo-40429: PyFrame_GetCode() result cannot be NULL (GH-19772) by Victor Stinner · 5 years ago
  30. 521c8d6 bpo-39966: Revert "bpo-25597: Ensure wraps' return value is used for magic methods in MagicMock" (GH-19734) by Karthikeyan Singaravelan · 5 years ago
  31. d9a43e2 bpo-40025: Require _generate_next_value_ to be defined before members (GH-19098) by Ethan Onstott · 5 years ago
  32. a42ca74 bpo-40421: Add PyFrame_GetCode() function (GH-19757) by Victor Stinner · 5 years ago
  33. b8f704d bpo-40421: Add Include/cpython/code.h header file (GH-19756) by Victor Stinner · 5 years ago
  34. 7c59d7c bpo-40421: Add pyframe.h header file (GH-19755) by Victor Stinner · 5 years ago
  35. 5da3526 Post 3.9.0a6 by Łukasz Langa · 5 years ago
  36. d66685a Merge tag 'v3.9.0a6' by Łukasz Langa · 5 years ago
  37. 5b9f498 bpo-40334: Refactor peg_generator to receive a Tokens file when building c code (GH-19745) by Pablo Galindo · 5 years ago
  38. 3d53d87 bpo-40334: Don't skip test_parser:test_trigget_memory_error (GH-19744) by Lysandros Nikolaou · 5 years ago
  39. d55133f bpo-40334: Catch E_EOF error, when the tokenizer returns ERRORTOKEN (GH-19743) by Lysandros Nikolaou · 5 years ago
  40. bc1c8af Python 3.9.0a6 by Łukasz Langa · 5 years ago
  41. 5d1f32d bpo-39995: Split test_concurrent_futures.test_crash() into sub-tests (GH-19739) by Victor Stinner · 5 years ago
  42. 1a27501 bpo-30966: concurrent.futures.Process.shutdown() closes queue (GH-19738) by Victor Stinner · 5 years ago
  43. b94dbd7 bpo-40334: Support PyPARSE_DONT_IMPLY_DEDENT in the new parser (GH-19736) by Pablo Galindo · 5 years ago
  44. 2b74c83 bpo-40334: Support CO_FUTURE_BARRY_AS_BDFL in the new parser (GH-19721) by Pablo Galindo · 5 years ago
  45. 9adccc1 bpo-30966: Add multiprocessing.SimpleQueue.close() (GH-19735) by Victor Stinner · 5 years ago
  46. c5c4281 bpo-40375: Implement imaplib.IMAP4.unselect (GH-19712) by Dong-hee Na · 5 years ago
  47. 91a5ae1 bpo-40217: Clean code in PyType_FromSpec_Alloc and add NEWS entry (GH-19733) by Pablo Galindo · 5 years ago
  48. 0169d30 bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSpec types (GH-19414) by Pablo Galindo · 5 years ago
  49. 4044c84 Add files in tests/test_peg_generator to the install target lists (GH-19723) by Pablo Galindo · 5 years ago
  50. 6292be7 bpo-40398: Fix typing.get_args() for special generic aliases. (GH-19720) by Serhiy Storchaka · 5 years ago
  51. caf1aad bpo-40348: Fix typos in the programming FAQ (GH-19729) by Zackery Spytz · 5 years ago
  52. b54e46c bpo-38387: Formally document PyDoc_STRVAR and PyDoc_STR macros (GH-16607) by Brad Solomon · 5 years ago
  53. a494caa bpo-40401: Remove duplicate pyhash.h include from pythoncore.vcxproj (GH-19725) by Ammar Askar · 5 years ago
  54. 88499f1 bpo-40387: Improve queue join() example. (GH-19724) by Raymond Hettinger · 5 years ago
  55. 68b352a bpo-40396: Support GenericAlias in the typing functions. (GH-19718) by Serhiy Storchaka · 5 years ago
  56. cfaf4c0 Fix typo in Lib/typing.py (GH-19717) by Nickolena Fisher · 5 years ago
  57. ef33712 Fix typo in object.__format__ docs (GH-19504) by Heshy Roskes · 5 years ago
  58. 515fce4 bpo-40275: Avoid importing logging in test.support (GH-19601) by Serhiy Storchaka · 5 years ago
  59. 1699491 bpo-40275: Avoid importing socket in test.support (GH-19603) by Serhiy Storchaka · 5 years ago
  60. 3c8a5b4 bpo-40275: Avoid importing asyncio in test.support (GH-19600) by Serhiy Storchaka · 5 years ago
  61. d4f3923 bpo-40279: Add some error-handling to the module initialisation docs example (GH-19705) by Cajetan Rodrigues · 5 years ago
  62. f828077 closes bpo-40385: Remove Tools/scripts/checkpyc.py (GH-19709) by Ammar Askar · 5 years ago
  63. 0e80b56 bpo-40334: Add What's New sections for PEP 617 and PEP 585 (GH-19704) by Guido van Rossum · 5 years ago
  64. 5aafa54 bpo-40340: Separate examples more clearly in the programming FAQ (GH-19688) by Cajetan Rodrigues · 5 years ago
  65. 503de71 bpo-40360: Deprecate lib2to3 module in light of PEP 617 (GH-19663) by Carl Meyer · 5 years ago
  66. 24ffe70 bpo-40334: Rewrite test_c_parser to avoid memory leaks (GH-19694) by Lysandros Nikolaou · 5 years ago
  67. e6f8abd bpo-38061: subprocess uses closefrom() on FreeBSD (GH-19697) by Victor Stinner · 5 years ago
  68. 162c567 bpo-38061: os.closerange() uses closefrom() on FreeBSD (GH-19696) by Victor Stinner · 5 years ago
  69. 4cc4d60 Expand the implementation comments (GH-19699) by Raymond Hettinger · 5 years ago
  70. 2510494 bpo-40048: Fix _PyCode_InitOpcache() error path (GH-19691) by Victor Stinner · 5 years ago
  71. 9f27dd3 Use Py_ssize_t instead of ssize_t (GH-19685) by Pablo Galindo · 5 years ago
  72. 50f28de bpo-40334: Allow to run make regen-pegen without distutils (GH-19684) by Pablo Galindo · 5 years ago
  73. 3e89251 Fix broken mkdir -p call in regen-pegen (#19695) by Guido van Rossum · 5 years ago
  74. bc28805 bpo-40334: Use old compiler when compile mode is func_type (GH-19692) by Guido van Rossum · 5 years ago
  75. 40ded94 bpo-40336: Refactor typing._SpecialForm (GH-19620) by Serhiy Storchaka · 5 years ago
  76. d663d34 bpo-39983: Add test.support.print_warning() (GH-19683) by Victor Stinner · 5 years ago
  77. 02e4484 Update ga_new to use _PyArg_CheckPositional and _PyArg_NoKwnames (GH-19679) by Dong-hee Na · 5 years ago
  78. ebebb64 bpo-40334: Improve various PEG-Parser related stuff (GH-19669) by Lysandros Nikolaou · 5 years ago
  79. 9e6a131 bpo-40370: Use the same compile and link args as the interpreter used in test_peg_generator (GH-19674) by Pablo Galindo · 5 years ago
  80. 1221135 gdbinit: Use proper define syntax (GH-19557) by Florian Bruhin · 5 years ago
  81. 8d1cbff bpo-40334: Suppress all output in test_peg_generator (GH-19675) by Lysandros Nikolaou · 5 years ago
  82. 1df5a9e bpo-40334: Fix build errors and warnings in test_peg_generator (GH-19672) by Pablo Galindo · 5 years ago
  83. ee40e4b bpo-40334: Don't downcast from Py_ssize_t to int (GH-19671) by Pablo Galindo · 5 years ago
  84. 0b7829e Compile extensions in test_peg_generator with C99 (GH-19668) by Pablo Galindo · 5 years ago
  85. 1def775 bpo-40334: Rename PyConfig.use_peg to _use_peg_parser (GH-19670) by Victor Stinner · 5 years ago
  86. a25f3c4 bpo-40334: Fix builds outside the source directory and regenerate autoconf files (GH-19667) by Pablo Galindo · 5 years ago
  87. ce0eacb Add @pablogsal as code owner for pegen-related files (GH-19665) by Pablo Galindo · 5 years ago
  88. 458004b bpo-40334: Fix errors in parse_string.c with old compilers (GH-19666) by Pablo Galindo · 5 years ago
  89. 3f8a58b PEP 617: Only run the CI with the new parser (GH-19664) by Pablo Galindo · 5 years ago
  90. c5fc156 bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503) by Pablo Galindo · 5 years ago
  91. a81849b bpo-39939: Add str.removeprefix and str.removesuffix (GH-18939) by sweeneyde · 5 years ago
  92. 39652cd bpo-40260: Remove unnecessary newline in compile() call (GH-19641) by Anthony Sottile · 5 years ago
  93. 4454057 bpo-39562: Prevent collision of future and compiler flags (GH-19230) by Batuhan Taşkaya · 5 years ago
  94. 9b49893 bpo-40214: Fix ctypes WinDLL test with insecure flags (GH-19652) by Steve Dower · 5 years ago
  95. 9bee32b bpo-40138: Fix Windows os.waitpid() for large exit code (GH-19637) by Victor Stinner · 5 years ago
  96. bcc136b bpo-38329: python.org macOS installers now update Current symlink (GH-19650) by Ned Deily · 5 years ago
  97. b310700 bpo-38360: macOS: support alternate form of -isysroot flag (GH-16480) by Joshua Root · 5 years ago
  98. 3a69f3c bpo-38439: Add 256px IDLE icon (GH-17473) by Miro Hrončok · 5 years ago
  99. 783a673 bpo-40164: Update macOS installer builds to use OpenSSL 1.1.1g. (GH-19642) by Ned Deily · 5 years ago
  100. 75bedbe bpo-40327: Improve atomicity, speed, and memory efficiency of the items() loop (GH-19628) by Raymond Hettinger · 5 years ago