HomeSort by relevance Sort by last modified time
    Searched refs:a_weekday (Results 1 - 4 of 4) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_strptime.py 36 a_weekday -- abbreviated weekday names (7-item list)
89 # Set self.a_weekday and self.f_weekday using the calendar
91 a_weekday = [calendar.day_abbr[i].lower() for i in range(7)]
93 self.a_weekday = a_weekday
129 (self.f_month[3], '%B'), (self.a_weekday[2], '%a'),
208 'a': self.__seqToRE(self.locale_time.a_weekday, 'a'),
397 weekday = locale_time.a_weekday.index(found_dict['a'].lower())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_strptime.py 36 a_weekday -- abbreviated weekday names (7-item list)
89 # Set self.a_weekday and self.f_weekday using the calendar
91 a_weekday = [calendar.day_abbr[i].lower() for i in range(7)]
93 self.a_weekday = a_weekday
129 (self.f_month[3], '%B'), (self.a_weekday[2], '%a'),
208 'a': self.__seqToRE(self.locale_time.a_weekday, 'a'),
397 weekday = locale_time.a_weekday.index(found_dict['a'].lower())
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_strptime.py 50 self.compare_against_time(self.LT_ins.a_weekday, '%a', 6,
119 self.assertTrue(pattern_string.find(self.locale_time.a_weekday[2]) != -1,
143 found = compiled.match("%s %s" % (self.locale_time.a_weekday[4],
147 (compiled.pattern, "%s %s" % (self.locale_time.a_weekday[4],
149 self.assertTrue(found.group('a') == self.locale_time.a_weekday[4] and
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_strptime.py 50 self.compare_against_time(self.LT_ins.a_weekday, '%a', 6,
119 self.assertTrue(pattern_string.find(self.locale_time.a_weekday[2]) != -1,
143 found = compiled.match("%s %s" % (self.locale_time.a_weekday[4],
147 (compiled.pattern, "%s %s" % (self.locale_time.a_weekday[4],
149 self.assertTrue(found.group('a') == self.locale_time.a_weekday[4] and

Completed in 87 milliseconds