def _to_str()

in common/timestamp.py [0:0]


    def _to_str(self) -> str:
        if self.unixtime < 100_000:  # useful for testing
            return f"Timestamp({self.unixtime})"
        return self._localized_time().strftime("%Y-%m-%d %H:%M:%S %Z%z")