Skip to content

Commit 81fe014

Browse files
authored
doc: Sync some missing 3.10 changes with the What's New (GH-25503)
Automerge-Triggered-By: GH:isidentical
1 parent 18e0d32 commit 81fe014

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

Doc/whatsnew/3.10.rst

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -776,6 +776,13 @@ New Modules
776776
Improved Modules
777777
================
778778
779+
asyncio
780+
-------
781+
782+
Added missing :meth:`~asyncio.events.AbstractEventLoop.connect_accepted_socket`
783+
method.
784+
(Contributed by Alex Grönholm in :issue:`41332`.)
785+
779786
argparse
780787
--------
781788
@@ -795,6 +802,12 @@ base64
795802
Add :func:`base64.b32hexencode` and :func:`base64.b32hexdecode` to support the
796803
Base32 Encoding with Extended Hex Alphabet.
797804
805+
bdb
806+
---
807+
808+
Add :meth:`~bdb.Breakpoint.clearBreakpoints` to reset all set breakpoints.
809+
(Contributed by Irit Katriel in :issue:`24160`.)
810+
798811
codecs
799812
------
800813
@@ -826,6 +839,9 @@ and objects representing asynchronously released resources.
826839
Add asynchronous context manager support to :func:`contextlib.nullcontext`.
827840
(Contributed by Tom Gringauz in :issue:`41543`.)
828841
842+
Add :class:`AsyncContextDecorator`, for supporting usage of async context managers
843+
as decorators.
844+
829845
curses
830846
------
831847
@@ -880,6 +896,9 @@ enum
880896
module constants have a :func:`repr` of ``module_name.member_name``.
881897
(Contributed by Ethan Furman in :issue:`40066`.)
882898
899+
Add :class:`enum.StrEnum` for enums where all members are strings.
900+
(Contributed by Ethan Furman in :issue:`41816`.)
901+
883902
fileinput
884903
---------
885904
@@ -1089,6 +1108,10 @@ and to match the behavior of static type checkers specified in the PEP.
10891108
10901109
(Contributed by Yurii Karabas in :issue:`42345`.)
10911110
1111+
Add new function :func:`typing.is_typeddict` to introspect if an annotation
1112+
is a :class:`typing.TypedDict`.
1113+
(Contributed by Patrick Reader in :issue:`41792`)
1114+
10921115
unittest
10931116
--------
10941117
@@ -1121,7 +1144,10 @@ zipimport
11211144
Add methods related to :pep:`451`: :meth:`~zipimport.zipimporter.find_spec`,
11221145
:meth:`zipimport.zipimporter.create_module`, and
11231146
:meth:`zipimport.zipimporter.exec_module`.
1124-
(Contributed by Brett Cannon in :issue:`42131`.
1147+
(Contributed by Brett Cannon in :issue:`42131`.)
1148+
1149+
Add :meth:`~zipimport.zipimporter.invalidate_caches` method.
1150+
(Contributed by Desmond Cheong in :issue:`14678`.)
11251151
11261152
11271153
Optimizations

0 commit comments

Comments
 (0)