mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 17:47:53 +07:00
6 lines
177 B
Python
6 lines
177 B
Python
class TestFour():
|
|
is_super = lambda self: True if self.__class__.__name__ == 'TestFour' else False
|
|
|
|
def is_sub(self):
|
|
return not self.is_super() # pass: implicit 'self'
|