(frame_custom_thread_id)
| 107 | |
| 108 | |
| 109 | def remove_custom_frame(frame_custom_thread_id): |
| 110 | with CustomFramesContainer.custom_frames_lock: |
| 111 | if DEBUG: |
| 112 | sys.stderr.write("remove_custom_frame: %s\n" % frame_custom_thread_id) |
| 113 | CustomFramesContainer.custom_frames.pop(frame_custom_thread_id, None) |
| 114 | CustomFramesContainer._py_db_command_thread_event.set() |
no test coverage detected