()
| 114 | |
| 115 | |
| 116 | def reapply_settrace(): |
| 117 | try: |
| 118 | tracing_func = _last_tracing_func_thread_local.tracing_func |
| 119 | except AttributeError: |
| 120 | return |
| 121 | else: |
| 122 | SetTrace(tracing_func) |
| 123 | |
| 124 | |
| 125 | def replace_sys_set_trace_func(): |
nothing calls this directly
no test coverage detected