summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorJelle Zijlstra <jelle.zijlstra@gmail.com>2021-04-11 02:57:05 (GMT)
committerGitHub <noreply@github.com>2021-04-11 02:57:05 (GMT)
commit522433601a5c64603dab3d733f41a5db39d237eb (patch)
tree4ed806539350027b86ff9afc1b780288d91d7fb7 /Doc/whatsnew
parent750f484752763fe9ac1d6455780aabcb67f25508 (diff)
downloadcpython-522433601a5c64603dab3d733f41a5db39d237eb.zip
cpython-522433601a5c64603dab3d733f41a5db39d237eb.tar.gz
cpython-522433601a5c64603dab3d733f41a5db39d237eb.tar.bz2
bpo-43783: Add ParamSpecArgs/Kwargs (GH-25298)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.10.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst
index 09064ec..50c8d53 100644
--- a/Doc/whatsnew/3.10.rst
+++ b/Doc/whatsnew/3.10.rst
@@ -550,9 +550,11 @@ which adds or removes parameters of another callable. Examples of usage can
be found in :class:`typing.Concatenate`.
See :class:`typing.Callable`, :class:`typing.ParamSpec`,
-:class:`typing.Concatenate` and :pep:`612` for more details.
+:class:`typing.Concatenate`, :class:`typing.ParamSpecArgs`,
+:class:`typing.ParamSpecKwargs`, and :pep:`612` for more details.
-(Contributed by Ken Jin in :issue:`41559`.)
+(Contributed by Ken Jin in :issue:`41559`, with minor enhancements by Jelle
+Zijlstra in :issue:`43783`. PEP written by Mark Mendoza.)
PEP 613: TypeAlias Annotation