summaryrefslogtreecommitdiff
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2023-03-15 12:33:41 +0300
committerGitHub <noreply@github.com>2023-03-15 09:33:41 +0000
commit2b5781d659ce3ffe03d4c1f46e4875e604cf2d88 (patch)
treedda052375c1a44ffdc0dd5b610163a539c0d2ec3 /Misc/NEWS.d
parent8647ba4b639077e201751ae6dbd82e8bfcf80895 (diff)
downloadcpython-git-2b5781d659ce3ffe03d4c1f46e4875e604cf2d88.tar.gz
gh-102615: Use `list` instead of `tuple` in `repr` of paramspec (#102637)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2023-03-13-12-05-55.gh-issue-102615.NcA_ZL.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-03-13-12-05-55.gh-issue-102615.NcA_ZL.rst b/Misc/NEWS.d/next/Library/2023-03-13-12-05-55.gh-issue-102615.NcA_ZL.rst
new file mode 100644
index 0000000000..333068369b
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-03-13-12-05-55.gh-issue-102615.NcA_ZL.rst
@@ -0,0 +1,3 @@
+Typing: Improve the ``repr`` of generic aliases for classes generic over a
+:class:`~typing.ParamSpec`. (Use square brackets to represent a parameter
+list.)