Files
codeql/python/ql/src/Exceptions/NotImplemented.py
2018-11-19 15:10:42 +00:00

10 lines
169 B
Python

class Abstract(object):
def wrong(self):
# Will raise a TypeError
raise NotImplemented()
def right(self):
raise NotImplementedError()