summaryrefslogtreecommitdiffstats
path: root/Lib/abc.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-01-27 02:16:42 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-01-27 02:16:42 (GMT)
commit2deb5c758adc4a9a55dae93ecaad5af43c344591 (patch)
tree5afe91e81c5ff9c9789101ba6d7e78ad4ed8c81a /Lib/abc.py
parent17527bedad4ecf1c6479d0df1decd34baa5ef8a7 (diff)
downloadcpython-2deb5c758adc4a9a55dae93ecaad5af43c344591.zip
cpython-2deb5c758adc4a9a55dae93ecaad5af43c344591.tar.gz
cpython-2deb5c758adc4a9a55dae93ecaad5af43c344591.tar.bz2
raise a clear TypeError when trying to register a non-class
Diffstat (limited to 'Lib/abc.py')
-rw-r--r--Lib/abc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/abc.py b/Lib/abc.py
index 95126d8..8aeb2af 100644
--- a/Lib/abc.py
+++ b/Lib/abc.py
@@ -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