Home
last modified time | relevance | path

Searched refs:AbstractClassExample (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/python/cpython2/Lib/test/
Dtest_inspect.py132 class AbstractClassExample(object): class
139 class ClassExample(AbstractClassExample):
146 self.assertTrue(inspect.isabstract(AbstractClassExample))
/aosp_15_r20/external/python/cpython3/Lib/test/
Dtest_inspect.py323 class AbstractClassExample(metaclass=ABCMeta): class
329 class ClassExample(AbstractClassExample):
336 self.assertTrue(inspect.isabstract(AbstractClassExample))
348 class AbstractClassExample(AbstractChecker): class
352 class ClassExample(AbstractClassExample):
358 class AbstractChild(AbstractClassExample):