QuackatronHQ / Gigarepo

Use of exit() or quit() detected PYL-R1722
Bug risk
Major
3 days ago2 years old
Consider using 'sys.exit' instead
 8            print(eval(string))
 9        except (KeyboardInterrupt, EOFError):
10            print()
11            exit()12        except (BaseException, KeyboardInterrupt) as e:
13            print(e)
14