Unregister class instrumentation.
(class_)
| 683 | |
| 684 | |
| 685 | def unregister_class(class_): |
| 686 | """Unregister class instrumentation.""" |
| 687 | |
| 688 | _instrumentation_factory.unregister(class_) |
| 689 | |
| 690 | |
| 691 | def is_instrumented(instance, key): |
nothing calls this directly
no test coverage detected