summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Library/2023-06-21-19-04-27.gh-issue-105974.M47n3t.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS.d/next/Library/2023-06-21-19-04-27.gh-issue-105974.M47n3t.rst')
-rw-r--r--Misc/NEWS.d/next/Library/2023-06-21-19-04-27.gh-issue-105974.M47n3t.rst6
1 files changed, 0 insertions, 6 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-06-21-19-04-27.gh-issue-105974.M47n3t.rst b/Misc/NEWS.d/next/Library/2023-06-21-19-04-27.gh-issue-105974.M47n3t.rst
deleted file mode 100644
index 982192e..0000000
--- a/Misc/NEWS.d/next/Library/2023-06-21-19-04-27.gh-issue-105974.M47n3t.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-Fix bug where a :class:`typing.Protocol` class that had one or more
-non-callable members would raise :exc:`TypeError` when :func:`issubclass`
-was called against it, even if it defined a custom ``__subclasshook__``
-method. The behaviour in Python 3.11 and lower -- which has now been
-restored -- was not to raise :exc:`TypeError` in these situations if a
-custom ``__subclasshook__`` method was defined. Patch by Alex Waygood.