deepsourcestatus / test-repository

Catching previously caught exception PYL-W0705
Bug risk
Critical
8 months ago8 months old
Catching previously caught exception type KeyboardInterrupt
 9        except (KeyboardInterrupt, EOFError):
10            print()
11            exit()
12        except (BaseException, KeyboardInterrupt) as e:13            print(e)
14
15