summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJelle Zijlstra <jelle.zijlstra@gmail.com>2023-05-24 08:24:53 (GMT)
committerGitHub <noreply@github.com>2023-05-24 08:24:53 (GMT)
commitc0ab7d401c736c37bf4462eef7c7d69fef8fab93 (patch)
tree99259a8ab3c26c47995995fcb82ddbdba1948f3d /Misc
parent4b56e56c495de58425ae3db5f4d8183127ee990b (diff)
downloadcpython-c0ab7d401c736c37bf4462eef7c7d69fef8fab93.zip
cpython-c0ab7d401c736c37bf4462eef7c7d69fef8fab93.tar.gz
cpython-c0ab7d401c736c37bf4462eef7c7d69fef8fab93.tar.bz2
gh-104797: Allow Protocols to inherit from collections.abc.Buffer (#104827)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2023-05-23-17-43-52.gh-issue-104797.NR7KzF.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-05-23-17-43-52.gh-issue-104797.NR7KzF.rst b/Misc/NEWS.d/next/Library/2023-05-23-17-43-52.gh-issue-104797.NR7KzF.rst
new file mode 100644
index 0000000..60c9a06
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-05-23-17-43-52.gh-issue-104797.NR7KzF.rst
@@ -0,0 +1,2 @@
+Allow :class:`typing.Protocol` classes to inherit from
+:class:`collections.abc.Buffer`. Patch by Jelle Zijlstra.