(self, typeconv)
| 247 | timeout = 10 |
| 248 | |
| 249 | def setup(self, typeconv): |
| 250 | if typeconv[0] == typeconv[1]: |
| 251 | raise NotImplementedError( |
| 252 | "Skipping test for converting to the same dtype") |
| 253 | self.xarg = get_squares_().get(typeconv[0]) |
| 254 | |
| 255 | def time_astype(self, typeconv): |
| 256 | self.xarg.astype(typeconv[1]) |
nothing calls this directly
no test coverage detected