(signum, frame)
| 112 | glutMainLoopEvent() |
| 113 | |
| 114 | def glut_int_handler(signum, frame): |
| 115 | # Catch sigint and print the default message |
| 116 | signal.signal(signal.SIGINT, signal.default_int_handler) |
| 117 | print('\nKeyboardInterrupt') |
| 118 | # Need to reprint the prompt at this stage |
| 119 | |
| 120 | |
| 121 |
nothing calls this directly
no outgoing calls
no test coverage detected