(signum, frame)
| 71 | glutMainLoopEvent() |
| 72 | |
| 73 | def glut_int_handler(signum, frame): |
| 74 | # Catch sigint and print the defaultipyt message |
| 75 | signal.signal(signal.SIGINT, signal.default_int_handler) |
| 76 | print('\nKeyboardInterrupt') |
| 77 | # Need to reprint the prompt at this stage |
| 78 | |
| 79 | # Initialisation code |
| 80 | glut.glutInit( sys.argv ) |
nothing calls this directly
no outgoing calls
no test coverage detected