(self)
| 334 | class TestCallers(unittest.TestCase): |
| 335 | """White-box testing of callers tracing""" |
| 336 | def setUp(self): |
| 337 | self.addCleanup(sys.settrace, sys.gettrace()) |
| 338 | self.tracer = Trace(count=0, trace=0, countcallers=1) |
| 339 | self.filemod = my_file_and_modname() |
| 340 | |
| 341 | @unittest.skipIf(hasattr(sys, 'gettrace') and sys.gettrace(), |
| 342 | 'pre-existing trace function throws off measurements') |
nothing calls this directly
no test coverage detected