(self)
| 189 | |
| 190 | class ClipDt: |
| 191 | def setup(self): |
| 192 | dr = date_range("20220101", periods=100_000, freq="s", tz="UTC") |
| 193 | self.clipper_dt = dr[0:1_000].repeat(100) |
| 194 | self.s = Series(dr) |
| 195 | |
| 196 | def time_clip(self): |
| 197 | self.s.clip(upper=self.clipper_dt) |
nothing calls this directly
no test coverage detected