Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/test/
Dtest_inspect.py132 class AbstractClassExample(object): class
139 class ClassExample(AbstractClassExample):
146 self.assertTrue(inspect.isabstract(AbstractClassExample))
/external/python/cpython3/Lib/test/
Dtest_inspect.py238 class AbstractClassExample(metaclass=ABCMeta): class
244 class ClassExample(AbstractClassExample):
251 self.assertTrue(inspect.isabstract(AbstractClassExample))
263 class AbstractClassExample(AbstractChecker): class
267 class ClassExample(AbstractClassExample):
273 class AbstractChild(AbstractClassExample):