(self, cache, count)
| 150 | param_names = ["cache", "count"] |
| 151 | |
| 152 | def setup(self, cache, count): |
| 153 | rng = date_range(start="1/1/1971", periods=count) |
| 154 | self.unique_date_strings = rng.strftime("%Y-%m-%d").tolist() |
| 155 | |
| 156 | def time_unique_date_strings(self, cache, count): |
| 157 | to_datetime(self.unique_date_strings, cache=cache) |
nothing calls this directly
no test coverage detected