mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
remove test for oldstyle classes
This commit is contained in:
parent
83cd3b91e2
commit
82c4885210
1 changed files with 0 additions and 8 deletions
|
|
@ -98,14 +98,6 @@ def bar(self): pass # abstract override of concrete
|
|||
self.assertRaises(TypeError, F) # because bar is abstract now
|
||||
self.assertTrue(isabstract(F))
|
||||
|
||||
def test_subclass_oldstyle_class(self):
|
||||
class A:
|
||||
__metaclass__ = abc.ABCMeta
|
||||
class OldstyleClass:
|
||||
pass
|
||||
self.assertFalse(issubclass(OldstyleClass, A))
|
||||
self.assertFalse(issubclass(A, OldstyleClass))
|
||||
|
||||
def test_registration_basics(self):
|
||||
class A(metaclass=abc.ABCMeta):
|
||||
pass
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue