Files
2018-03-27 21:33:54 +03:00

12 lines
157 B
Python

from abc import abstractmethod
class Abstract(object):
@abstractmethod
def foo(self, bar):
pass
class Concrete(Abstract):
"""The docstring."""