Format using strftime(). Example: "%d/%m/%Y, %H:%M:%S"
(self, format)
| 1096 | self._day, self._year) |
| 1097 | |
| 1098 | def strftime(self, format): |
| 1099 | """ |
| 1100 | Format using strftime(). |
| 1101 | |
| 1102 | Example: "%d/%m/%Y, %H:%M:%S" |
| 1103 | """ |
| 1104 | return _wrap_strftime(self, format, self.timetuple()) |
| 1105 | |
| 1106 | def __format__(self, fmt): |
| 1107 | if not isinstance(fmt, str): |
no test coverage detected