(*args, **kwargs)
| 17 | this case, we want to ignore interrupts. |
| 18 | """ |
| 19 | def wrapper(*args, **kwargs): |
| 20 | try: |
| 21 | func(*args, **kwargs) |
| 22 | except KeyboardInterrupt: |
| 23 | pass |
| 24 | return wrapper |
| 25 | |
| 26 |
nothing calls this directly
no test coverage detected
searching dependent graphs…