Home
last modified time | relevance | path

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

/third_party/python/Lib/test/
Dtest_inspect.py265 class AbstractClassExample(metaclass=ABCMeta): class
271 class ClassExample(AbstractClassExample):
278 self.assertTrue(inspect.isabstract(AbstractClassExample))
290 class AbstractClassExample(AbstractChecker): class
294 class ClassExample(AbstractClassExample):
300 class AbstractChild(AbstractClassExample):