(self)
| 1056 | self.check_track(False) |
| 1057 | |
| 1058 | def test_track_without_gil(self): |
| 1059 | # check that calling _PyTraceMalloc_Track() without holding the GIL |
| 1060 | # works too |
| 1061 | self.check_track(True) |
| 1062 | |
| 1063 | def test_track_already_tracked(self): |
| 1064 | nframe = 5 |
nothing calls this directly
no test coverage detected