(self)
| 110 | return self.isocalendar()[2] |
| 111 | @property |
| 112 | def timestamp(self): |
| 113 | return int(mktime(self.timetuple())) # Seconds elapsed since 1/1/1970. |
| 114 | def strftime(self, format): |
| 115 | if self.year < 1900: |
| 116 | # Python's strftime() doesn't handle year < 1900: |
no outgoing calls
no test coverage detected