(size)
| 204 | def test_get_traces_intern_traceback(self): |
| 205 | # dummy wrappers to get more useful and identical frames in the traceback |
| 206 | def allocate_bytes2(size): |
| 207 | return allocate_bytes(size) |
| 208 | def allocate_bytes3(size): |
| 209 | return allocate_bytes2(size) |
| 210 | def allocate_bytes4(size): |
nothing calls this directly
no test coverage detected