def normalize(self): """ Return DatetimeIndex with times to midnight. Length is unaltered Returns ------- normalized : DatetimeIndex """ new_values = lib.date_normalize(self.asi8) return DatetimeIndex(new_values, freq='infer', name=self.name)