Lines Matching refs:now
34 def _update_variables(self, now): argument
36 self.gmt = time.gmtime(now)
37 now = time.localtime(now)
39 if now[3] < 12: self.ampm='(AM|am)'
42 self.jan1 = time.localtime(time.mktime((now[0], 1, 1, 0, 0, 0, 0, 1, 0)))
45 if now[8]: self.tz = time.tzname[1]
50 if now[3] > 12: self.clock12 = now[3] - 12
51 elif now[3] > 0: self.clock12 = now[3]
54 self.now = now
67 now = time.time()
68 self._update_variables(now)
69 self.strftest1(now)
70 self.strftest2(now)
78 arg = now + (i+j*100)*23*3603
83 def strftest1(self, now): argument
85 print("strftime test for", time.ctime(now))
86 now = self.now
90 ('%a', calendar.day_abbr[now[6]], 'abbreviated weekday name'),
91 ('%A', calendar.day_name[now[6]], 'full weekday name'),
92 ('%b', calendar.month_abbr[now[1]], 'abbreviated month name'),
93 ('%B', calendar.month_name[now[1]], 'full month name'),
95 ('%d', '%02d' % now[2], 'day of month as number (00-31)'),
96 ('%H', '%02d' % now[3], 'hour (00-23)'),
98 ('%j', '%03d' % now[7], 'julian day (001-366)'),
99 ('%m', '%02d' % now[1], 'month as number (01-12)'),
100 ('%M', '%02d' % now[4], 'minute, (00-59)'),
102 ('%S', '%02d' % now[5], 'seconds of current time (00-60)'),
103 ('%U', '%02d' % ((now[7] + self.jan1[6])//7),
105 ('%w', '0?%d' % ((1+now[6]) % 7), 'weekday as a number (Sun 1st)'),
106 ('%W', '%02d' % ((now[7] + (self.jan1[6] - 1)%7)//7),
109 ('%X', '%02d:%02d:%02d' % (now[3], now[4], now[5]), '%H:%M:%S'),
110 ('%y', '%02d' % (now[0]%100), 'year without century'),
111 ('%Y', '%d' % now[0], 'year with century'),
119 result = time.strftime(e[0], now)
131 def strftest2(self, now): argument
132 nowsecs = str(int(now))[:-1]
133 now = self.now
137 ('%c', fixasctime(time.asctime(now)), 'near-asctime() format'),
138 ('%x', '%02d/%02d/%02d' % (now[1], now[2], (now[0]%100)),
143 ('%D', '%02d/%02d/%02d' % (now[1], now[2], (now[0]%100)), 'mm/dd/yy'),
144 ('%e', '%2d' % now[2], 'day of month as number, blank padded ( 0-31)'),
145 ('%h', calendar.month_abbr[now[1]], 'abbreviated month name'),
146 ('%k', '%2d' % now[3], 'hour, blank padded ( 0-23)'),
148 ('%r', '%02d:%02d:%02d %s' % (self.clock12, now[4], now[5], self.ampm),
150 ('%R', '%02d:%02d' % (now[3], now[4]), '%H:%M'),
153 ('%T', '%02d:%02d:%02d' % (now[3], now[4], now[5]), '%H:%M:%S'),
154 ('%3y', '%03d' % (now[0]%100),
161 result = time.strftime(e[0], now)