Merged revisions 77788-77789 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r77788 | benjamin.peterson | 2010-01-26 20:15:28 -0600 (Tue, 26 Jan 2010) | 1 line

  for UserDict to be compatible with abcs, it must subclass object
........
  r77789 | benjamin.peterson | 2010-01-26 20:16:42 -0600 (Tue, 26 Jan 2010) | 1 line

  raise a clear TypeError when trying to register a non-class
........
This commit is contained in:
Benjamin Peterson 2010-01-27 02:24:25 +00:00
parent 01bd3ece5c
commit 3059caadc6
4 changed files with 9 additions and 2 deletions

View file

@ -149,6 +149,11 @@ class TestABC(unittest.TestCase):
self.assertRaises(RuntimeError, C.register, A) # cycles not allowed
C.register(B) # ok
def test_register_non_class(self):
class A(object):
__metaclass__ = abc.ABCMeta
self.assertRaises(TypeError, A.register, 4)
def test_registration_transitiveness(self):
class A:
__metaclass__ = abc.ABCMeta