summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorINADA Naoki <methane@users.noreply.github.com>2018-03-07 07:27:01 (GMT)
committerGitHub <noreply@github.com>2018-03-07 07:27:01 (GMT)
commitfc7df0e664198cb05cafd972f190a18ca422989c (patch)
tree960e82951c176ac63b1e8891422c013090af5a83 /Misc/NEWS.d/next
parentbc3f2289b9007396bfb7f986bee477b6176c1822 (diff)
downloadcpython-fc7df0e664198cb05cafd972f190a18ca422989c.zip
cpython-fc7df0e664198cb05cafd972f190a18ca422989c.tar.gz
cpython-fc7df0e664198cb05cafd972f190a18ca422989c.tar.bz2
bpo-32999: Fix ABC.__subclasscheck__ crash (GH-6002)
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Library/2018-03-06-20-30-20.bpo-32999.lgFXWl.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-03-06-20-30-20.bpo-32999.lgFXWl.rst b/Misc/NEWS.d/next/Library/2018-03-06-20-30-20.bpo-32999.lgFXWl.rst
new file mode 100644
index 0000000..45e75f9
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-03-06-20-30-20.bpo-32999.lgFXWl.rst
@@ -0,0 +1,2 @@
+Fix C implemetation of ``ABC.__subclasscheck__(cls, subclass)`` crashed when
+``subclass`` is not a type object.