mirror of
https://github.com/python/cpython.git
synced 2025-07-29 06:05:00 +00:00
raise a clear TypeError when trying to register a non-class
This commit is contained in:
parent
17527bedad
commit
2deb5c758a
3 changed files with 9 additions and 1 deletions
|
@ -96,7 +96,7 @@ class ABCMeta(type):
|
|||
|
||||
def register(cls, subclass):
|
||||
"""Register a virtual subclass of an ABC."""
|
||||
if not isinstance(cls, type):
|
||||
if not isinstance(subclass, type):
|
||||
raise TypeError("Can only register classes")
|
||||
if issubclass(subclass, cls):
|
||||
return # Already a subclass
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue