mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
15 lines
272 B
Python
15 lines
272 B
Python
from abc import abstractmethod
|
|
class A1(object):
|
|
def __init__(self):
|
|
self.a = "Something"
|
|
|
|
@abstractmethod
|
|
def my_method(self):
|
|
print self.a
|
|
|
|
class B(A1):
|
|
def my_method(self):
|
|
<selection>pass</selection>
|
|
|
|
def __iter__(self): pass
|