Files
codeql/python/ql/test/query-tests/Expressions/super/test_except.py
2018-11-19 15:15:54 +00:00

14 lines
196 B
Python

try:
@decorator
class S(object):
def __init__(self, *args, **kwargs):
super(S, self).__init__(*args, **kwargs)
except Exception:
class S(object):
pass