(cls, results)
| 36 | |
| 37 | @classmethod |
| 38 | def update_results(cls, results): |
| 39 | cls._divide_results(results, "c", "python", "c / py") |
| 40 | cls._divide_results(results, "cython", "python", "cy / py") |
| 41 | cls._divide_results(results, "cython", "c", "cy / c") |
| 42 | |
| 43 | @test_case |
| 44 | def tuplegetter_one(self): |
nothing calls this directly
no test coverage detected