Lines Matching refs:strftime
166 time.strftime(format, tt)
170 self.assertRaises(TypeError, time.strftime, b'%S', tt)
172 self.assertRaises(ValueError, time.strftime, '%S\0', tt)
232 self._bounds_checking(lambda tup: time.strftime('', tup))
243 time.strftime(x * y + z)
254 result = time.strftime("%Y %m %d %H %M %S %w %j", (2000,)+(0,)*8)
265 strf_output = time.strftime(format, tt)
451 tzname = time.strftime('%Z', tt)
457 self.assertEqual(time.strftime('%Z', tt), tzname)
589 time.strftime("%B", (2009,2,1,0,0,0,0,0,0))
610 if time.strftime('%Y', (1,) + (0,) * 8) == '0001':
616 return time.strftime('%Y', (y,) + (0,) * 8)
624 return time.strftime('%4Y', (y,) + (0,) * 8)
631 time.strftime('%Y', (y,) + (0,) * 8)