mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
15 lines
240 B
Python
15 lines
240 B
Python
from abc import abstractmethod
|
|
|
|
|
|
class Abstract(object):
|
|
|
|
@abstractmethod
|
|
def foo(self, bar):
|
|
pass
|
|
|
|
|
|
class Concrete(Abstract):
|
|
"""The docstring."""
|
|
|
|
def foo(self, bar):
|
|
<selection>super(Concrete, self).foo(bar)</selection> |