1. 79d2e62 Added support for negative indexes to PurePath.parents (GH-21799) by Yaroslav Pankovych · 3 years, 10 months ago
  2. 686c203 bpo-42423: Accept single base class in PyType_FromModuleAndSpec() (GH-23441) by Serhiy Storchaka · 3 years, 10 months ago
  3. 4520584 bpo-35498: Added slice support to PathLib parents attribute. (GH-11165) by Joshua Cannon · 3 years, 10 months ago
  4. 03c8ddd bpo-42413: socket.timeout is now an alias of TimeoutError (GH-23413) by Christian Heimes · 3 years, 10 months ago
  5. 4687338 bpo-42345: Add whatsnew for typing.Literal in 3.10 (GH-23385) by kj · 3 years, 10 months ago
  6. a85fefe bpo-42381: Document walrus-related syntax changes in whatsnew (GH-23382) by Lysandros Nikolaou · 3 years, 10 months ago
  7. e025178 bpo-39573: Remove What's new entry for Py_SIZE() (GH-23375) by Miro Hrončok · 3 years, 10 months ago
  8. 0e2ac21 bpo-39573: Convert Py_TYPE() and Py_SIZE() back to macros (GH-23366) by Victor Stinner · 3 years, 10 months ago
  9. 9c98e8c bpo-42396: Add a whatsnew entry about async contextlib.nullcontext (GH-23357) by Tom Gringauz · 3 years, 10 months ago
  10. a1f401a bpo-42264: Deprecate sqlite3.OptimizedUnicode (GH-23163) by Erlend Egeberg Aasland · 3 years, 10 months ago
  11. 296a796 bpo-41713: Remove PyOS_InitInterrupts() function (GH-23342) by Victor Stinner · 3 years, 10 months ago
  12. a57b3d3 bpo-41625: Expose the splice() system call in the os module (GH-21947) by Pablo Galindo · 3 years, 10 months ago
  13. c26d591 bpo-40939: Document removal of the old parser in 3.10 whatsnew (GH-23321) by Lysandros Nikolaou · 3 years, 10 months ago
  14. d2e94bb bpo-42131: Add PEP 451-related methods to zipimport (GH-23187) by Brett Cannon · 3 years, 10 months ago
  15. cd9fed6 bpo-41001: Add os.eventfd() (#20930) by Christian Heimes · 3 years, 10 months ago
  16. 750c5ab bpo-42308: Add threading.__excepthook__ (GH-23218) by Mario Corchero · 3 years, 10 months ago
  17. 95ce7cd bpo-1635741: Fix typo in PyModule_AddObjectRef() doc (GH-23234) by Victor Stinner · 3 years, 10 months ago
  18. a13b26c bpo-41073: PyType_GetSlot() can now accept static types. (GH-21931) by Hai Shi · 3 years, 10 months ago
  19. ace3f9a bpo-42260: Fix _PyConfig_Read() if compute_path_config=0 (GH-23220) by Victor Stinner · 3 years, 10 months ago
  20. 3eb2846 Update whatsnew for 3.10 release about addition of contextlib.aclosing (GH-23217) by Joongi Kim · 3 years, 10 months ago
  21. 825ac38 bpo-42133: update parts of the stdlib to fall back to `__spec__.loader` when `__loader__` is missing (#22929) by Brett Cannon · 3 years, 10 months ago
  22. 88c2cfd bpo-41832: PyType_FromModuleAndSpec() now accepts NULL tp_doc (GH-23123) by Hai Shi · 3 years, 10 months ago
  23. 91e9379 bpo-26389: Allow passing an exception object in the traceback module (GH-22610) by Zackery Spytz · 3 years, 10 months ago
  24. 53a03aa bpo-42262: Add Py_NewRef() and Py_XNewRef() (GH-23152) by Victor Stinner · 3 years, 10 months ago
  25. 8021875 bpo-1635741: Add PyModule_AddObjectRef() function (GH-23122) by Victor Stinner · 3 years, 11 months ago
  26. 0001a1b bpo-42251: Add gettrace and getprofile to threading (GH-23125) by Mario Corchero · 3 years, 11 months ago
  27. d21cb2d bpo-42198: Improve consistency of Union docs (GH-23029) by kj · 3 years, 11 months ago
  28. 99608c7 DOC: attribute PyPy for the idea behind LOAD_ATTR cache (GH-23036) by Matti Picus · 3 years, 11 months ago
  29. df59273 bpo-34204: Use pickle.DEFAULT_PROTOCOL in shelve (GH-19639) by Zackery Spytz · 3 years, 11 months ago
  30. 84f7382 bpo-42157: Rename unicodedata.ucnhash_CAPI (GH-22994) by Victor Stinner · 3 years, 11 months ago
  31. 920cb64 bpo-42157: unicodedata avoids references to UCD_Type (GH-22990) by Victor Stinner · 3 years, 11 months ago
  32. 47e1afd bpo-1635741: _PyUnicode_Name_CAPI moves to internal C API (GH-22713) by Victor Stinner · 3 years, 11 months ago
  33. 04523c5 Mention in "What's New" that the import system is starting to be cleaned up (GH-22931) by Brett Cannon · 3 years, 11 months ago
  34. b451b0e bpo-38980: Add -fno-semantic-interposition when building with optimizations (GH-22862) by Pablo Galindo · 3 years, 11 months ago
  35. 109826c bpo-42093: Add opcode cache for LOAD_ATTR (GH-22803) by Pablo Galindo · 4 years ago
  36. 3a8fdb2 bpo-41784: make PyUnicode_AsUTF8AndSize part of the limited API (GH-22252) by Alex Gaynor · 4 years ago
  37. c5b049b bpo-39337: encodings.normalize_encoding() now ignores non-ASCII characters (GH-22219) by Hai Shi · 4 years ago
  38. 24a54c0 Delete PyGen_Send (#22663) by Vladimir Matveev · 4 years ago
  39. 037245c bpo-41756: Add PyIter_Send function (#22443) by Vladimir Matveev · 4 years ago
  40. e2ec0b2 bpo-41974: Remove complex.__float__, complex.__floordiv__, etc (GH-22593) by Serhiy Storchaka · 4 years ago
  41. 4f3c250 bpo-41923: PEP 613: Add TypeAlias to typing module (#22532) by Mikhail Golubev · 4 years ago
  42. 044a104 bpo-38605: Make 'from __future__ import annotations' the default (GH-20434) by Batuhan Taskaya · 4 years ago
  43. dcc5421 bpo-41936. Remove macros Py_ALLOW_RECURSION/Py_END_ALLOW_RECURSION (GH-22552) by Serhiy Storchaka · 4 years ago
  44. 8e1dd55 bpo-41428: Documentation for PEP 604 (gh-22517) by Fidget-Spinner · 4 years ago
  45. 583ee5a bpo-41692: Deprecate PyUnicode_InternImmortal() (GH-22486) by Victor Stinner · 4 years ago
  46. d332e7b bpo-41842: Add codecs.unregister() function (GH-22360) by Hai Shi · 4 years ago
  47. 2e4dd33 bpo-30155: Add macros to get tzinfo from datetime instances (GH-21633) by Zackery Spytz · 4 years ago
  48. 19c3ac9 bpo-41834: Remove _Py_CheckRecursionLimit variable (GH-22359) by Victor Stinner · 4 years ago
  49. 0d0e9fe bpo-41810: Reintroduce `types.EllipsisType`, `.NoneType` & `.NotImplementedType` (GH-22336) by Bas van Beek · 4 years ago
  50. c8c70e7 Add missing whatsnew entry for TestCase.assertNoLogs (GH-22317) by Mark Dickinson · 4 years ago
  51. 207c321 bpo-40744: Drop support for SQLite pre 3.7.3 (GH-20909) by Erlend Egeberg Aasland · 4 years ago
  52. 4ce6faa bpo-16995: add support for base32 extended hex (base32hex) (GH-20441) by Filipe Laíns · 4 years, 1 month ago
  53. e28b8c9 bpo-35018: Sax parser should provide user access to lexical handlers (GH-20958) by Zackery Spytz · 4 years, 1 month ago
  54. 3405e05 bpo-41440: add os.cpu_count() support for VxWorks RTOS (GH-21685) by pxinwr · 4 years, 1 month ago
  55. da4e09f bpo-36982: Add support for extended color functions in ncurses 6.1 (GH-17536) by Hans Petter Jansson · 4 years, 1 month ago
  56. daff390 bpo-38731: Add --quiet option to py_compile CLI (GH-17134) by Gregory Schevchenko · 4 years, 2 months ago
  57. 12f4334 bpo-41334: Convert constructors of str, bytes and bytearray to Argument Clinic (GH-21535) by Serhiy Storchaka · 4 years, 2 months ago
  58. d4d127f bpo-31844: Move whatsnew note to 3.10.rst (GH-21504) by Berker Peksag · 4 years, 2 months ago
  59. 038dd0f bpo-36346: Raise DeprecationWarning when creating legacy Unicode (GH-20933) by Inada Naoki · 4 years, 3 months ago
  60. b333266 bpo-41123: Remove PyUnicode_AsUnicodeCopy (GH-21209) by Inada Naoki · 4 years, 3 months ago
  61. dd8a93e bpo-23427: Add sys.orig_argv attribute (GH-20729) by Victor Stinner · 4 years, 3 months ago
  62. e4f1fe6 bpo-41123: Remove PyLong_FromUnicode() (GH-21204) by Inada Naoki · 4 years, 3 months ago
  63. d9f2a13 bpo-41123: Remove PyUnicode_GetMax() (GH-21192) by Inada Naoki · 4 years, 3 months ago
  64. 20a7902 bpo-41123: Remove Py_UNICODE_str* functions (GH-21164) by Inada Naoki · 4 years, 3 months ago
  65. 6f8a6ee bpo-41103: Remove old buffer protocol support (#21117) by Inada Naoki · 4 years, 3 months ago
  66. 59cf853 bpo-40636: Documentation for zip-strict (#20961) by Ram Rachum · 4 years, 3 months ago
  67. 37bb289 bpo-40943: PY_SSIZE_T_CLEAN required for '#' formats (GH-20784) by Victor Stinner · 4 years, 3 months ago
  68. 8a64cea bpo-38144: Add the root_dir and dir_fd parameters in glob.glob(). (GH-16075) by Serhiy Storchaka · 4 years, 3 months ago
  69. 2c2a4f3 bpo-41006: What's New: less => fewer modules (GH-20955) by Victor Stinner · 4 years, 3 months ago
  70. 4c18fc8 bpo-41006: Document the runpy optimization (GH-20953) by Victor Stinner · 4 years, 3 months ago
  71. 7ab92d5 bpo-36020: Require vsnprintf() to build Python (GH-20899) by Victor Stinner · 4 years, 3 months ago
  72. 3ee0e48 bpo-40890: Add `mapping` property to dict views (GH-20749) by Dennis Sweeney · 4 years, 3 months ago
  73. dc24b8a bpo-39573: Porting to Python 3.10: Py_SET_SIZE() macro (GH-20610) by Victor Stinner · 4 years, 3 months ago
  74. 59d3dce bpo-40839: PyDict_GetItem() requires the GIL (GH-20580) by Victor Stinner · 4 years, 4 months ago
  75. 39de8e4 bpo-40630: adjust tracemalloc.reset_peak docs for backport to 3.9 (GH-20546) by Huon Wilson · 4 years, 4 months ago
  76. 8bd216d bpo-29882: Add an efficient popcount method for integers (#771) by Niklas Fiekas · 4 years, 4 months ago
  77. 5f4b229d bpo-40792: Make the result of PyNumber_Index() always having exact type int. (GH-20443) by Serhiy Storchaka · 4 years, 4 months ago
  78. fe2978b bpo-39573: Convert Py_REFCNT and Py_SIZE to functions (GH-20429) by Victor Stinner · 4 years, 4 months ago
  79. 578c395 bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636) by Serhiy Storchaka · 4 years, 4 months ago
  80. ad3252b bpo-39573: Convert Py_TYPE() to a static inline function (GH-20290) by Dong-hee Na · 4 years, 4 months ago
  81. 8b62644 bpo-40630: Add tracemalloc.reset_peak (GH-20102) by Huon Wilson · 4 years, 4 months ago
  82. 29251b7 3.10 whatsnew needs to use blurb-produced changelog (GH-20213) by Ned Deily · 4 years, 4 months ago
  83. d4fe098 Python 3.10.0a0 (GH-20198) by Pablo Galindo · 4 years, 4 months ago