SYMBOL INDEX (10 symbols across 3 files) FILE: antipatterns/python-examples/reraise_exceptions_bad.py class ToastException (line 6) | class ToastException(Exception): function toast (line 10) | def toast(bread): function put_in_toaster (line 17) | def put_in_toaster(bread): FILE: antipatterns/python-examples/reraise_exceptions_good.py class ToastException (line 6) | class ToastException(Exception): function toast (line 10) | def toast(bread): function put_in_toaster (line 18) | def put_in_toaster(bread): FILE: antipatterns/sqlalchemy-examples/exists.py class Toaster (line 12) | class Toaster(Base): function toaster_exists_bad (line 20) | def toaster_exists_bad(toaster_id): function toaster_exists_good (line 25) | def toaster_exists_good(toaster_id): function main (line 31) | def main():