bpo-32999: Fix ABC.__subclasscheck__ crash (GH-6002)

This commit is contained in:
INADA Naoki 2018-03-07 16:27:01 +09:00 committed by GitHub
parent bc3f2289b9
commit fc7df0e664
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 45 additions and 12 deletions

View file

@ -0,0 +1,2 @@
Fix C implemetation of ``ABC.__subclasscheck__(cls, subclass)`` crashed when
``subclass`` is not a type object.