(self)
| 2420 | sys.monitoring.set_events(TEST_TOOL, 0) |
| 2421 | |
| 2422 | def test_disable_event(self): |
| 2423 | for expected, event, function, *args in self.cases: |
| 2424 | offset = 0 |
| 2425 | self.codelike = _testcapi.CodeLike(2) |
| 2426 | with self.subTest(function.__name__): |
| 2427 | args_ = (self.codelike, 0) + tuple(args) |
| 2428 | self.check_disable(event, function, args_, expected) |
| 2429 | |
| 2430 | def test_enter_scope_two_events(self): |
| 2431 | try: |
nothing calls this directly
no test coverage detected