Home
last modified time | relevance | path

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

/third_party/python/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):