(self)
| 3190 | |
| 3191 | @contextlib.contextmanager |
| 3192 | def get_files(self): |
| 3193 | with open(TESTFN, "rb") as src: |
| 3194 | with open(TESTFN2, "wb") as dst: |
| 3195 | yield (src, dst) |
| 3196 | |
| 3197 | def zerocopy_fun(self, *args, **kwargs): |
| 3198 | raise NotImplementedError("must be implemented in subclass") |
no test coverage detected