Files
openide/python/testData/override/overriddenMethodRaisesNotImplementedError.py

9 lines
147 B
Python

class A:
def m(self):
"""Abstract method."""
raise NotImplementedError('Should not be called directly')
class B(A):
pass