mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
12 lines
157 B
Python
12 lines
157 B
Python
from abc import abstractmethod
|
|
|
|
|
|
class Abstract(object):
|
|
|
|
@abstractmethod
|
|
def foo(self, bar):
|
|
pass
|
|
|
|
|
|
class Concrete(Abstract):
|
|
"""The docstring.""" |