(argv)
| 53 | raise KeyboardInterrupt |
| 54 | |
| 55 | def main(argv): |
| 56 | while True: |
| 57 | try: |
| 58 | do_processing() # Interrupted |
| 59 | except Exception as e: |
| 60 | print("Error:", type(e), e) |
| 61 | |
| 62 | return 0 |
| 63 | |
| 64 | if __name__ == "__main__": |
| 65 | sys.exit(main(sys.argv)) |
no test coverage detected