Lines Matching defs:strftime
200 # Correctly substitute for %z and %Z escapes in strftime formats.
251 # strftime is going to have at this: escape %
262 return _time.strftime(newformat, timetuple)
916 strftime()
1020 # easily done without using strftime() -- that's better too because
1021 # strftime("%c", ...) is locale specific.
1032 def strftime(self, fmt):
1034 Format using strftime().
1044 return self.strftime(fmt)
1329 strftime()
1554 def strftime(self, fmt):
1555 """Format using strftime(). The date part of the timestamp passed
1556 to underlying strftime should not be used.
1558 # The year must be >= 1000 else Python's strftime implementation
1569 return self.strftime(fmt)