deepsourcestatus / test-repository

Audit required: Use of eval PYL-W0123
Security
Major
8 months ago8 months old
 5    while True:
 6        try:
 7            string = input("> ")
 8            print(eval(string)) 9        except (KeyboardInterrupt, EOFError):
10            print()
11            exit()