Files
2022-05-05 18:25:55 +02:00

12 lines
165 B
Python

from . import a
class B(a.A):
def regular_method(self):
'''This regular method overrides
:meth:`a.A.regular_method`
'''
pass