mirror of
https://github.com/python/cpython.git
synced 2025-08-28 12:45:07 +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 @@ class TestABC(unittest.TestCase):
|
||||||
self.assertRaises(TypeError, F) # because bar is abstract now
|
self.assertRaises(TypeError, F) # because bar is abstract now
|
||||||
self.assertTrue(isabstract(F))
|
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):
|
def test_registration_basics(self):
|
||||||
class A(metaclass=abc.ABCMeta):
|
class A(metaclass=abc.ABCMeta):
|
||||||
pass
|
pass
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue