(*args)
| 61 | """ |
| 62 | @functools.wraps(func) |
| 63 | def decorator(*args): |
| 64 | key = threading_setup() |
| 65 | try: |
| 66 | return func(*args) |
| 67 | finally: |
| 68 | threading_cleanup(*key) |
| 69 | return decorator |
| 70 | |
| 71 |
nothing calls this directly
no test coverage detected
searching dependent graphs…