@@ -776,6 +776,13 @@ New Modules
776776Improved 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+
779786argparse
780787--------
781788
@@ -795,6 +802,12 @@ base64
795802Add :func:`base64.b32hexencode` and :func:`base64.b32hexdecode` to support the
796803Base32 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+
798811codecs
799812------
800813
@@ -826,6 +839,9 @@ and objects representing asynchronously released resources.
826839Add 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+
829845curses
830846------
831847
880896module 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+
883902fileinput
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+
10921115unittest
10931116--------
10941117
@@ -1121,7 +1144,10 @@ zipimport
11211144Add 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
11271153Optimizations
0 commit comments