diff options
author | Gregory Beauregard <greg@greg.red> | 2022-02-08 07:46:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-08 07:46:58 (GMT) |
commit | c8b62bbe46e20d4b6dd556f2fa85960d1269aa45 (patch) | |
tree | 34296f484dcc9a4a346de4a93b22b0578c2d4703 /Misc | |
parent | e959dd9f5c1d8865d4e10c49eb30ee0a4fe2735d (diff) | |
download | cpython-c8b62bbe46e20d4b6dd556f2fa85960d1269aa45.zip cpython-c8b62bbe46e20d4b6dd556f2fa85960d1269aa45.tar.gz cpython-c8b62bbe46e20d4b6dd556f2fa85960d1269aa45.tar.bz2 |
bpo-46676: Make ParamSpec args and kwargs equal to themselves (GH-31203)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-02-07-19-20-42.bpo-46676.3Aws1o.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-02-07-19-20-42.bpo-46676.3Aws1o.rst b/Misc/NEWS.d/next/Library/2022-02-07-19-20-42.bpo-46676.3Aws1o.rst new file mode 100644 index 0000000..408412e --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-02-07-19-20-42.bpo-46676.3Aws1o.rst @@ -0,0 +1 @@ +Make :data:`typing.ParamSpec` args and kwargs equal to themselves. Patch by Gregory Beauregard. |