Format using strftime(). Example: "%d/%m/%Y, %H:%M:%S"
(self, fmt)
| 1026 | self._day, self._year) |
| 1027 | |
| 1028 | def strftime(self, fmt): |
| 1029 | """ |
| 1030 | Format using strftime(). |
| 1031 | |
| 1032 | Example: "%d/%m/%Y, %H:%M:%S" |
| 1033 | """ |
| 1034 | return _wrap_strftime(self, fmt, self.timetuple()) |
| 1035 | |
| 1036 | def __format__(self, fmt): |
| 1037 | if not isinstance(fmt, str): |
no test coverage detected