Searched refs:month_abbr (Results 1 – 12 of 12) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_strftime.py | 94 ('%b', calendar.month_abbr[now[1]], 'abbreviated month name'), 147 ('%h', calendar.month_abbr[now[1]], 'abbreviated month name'),
|
/external/python/cpython3/Lib/test/ |
D | test_strftime.py | 92 ('%b', calendar.month_abbr[now[1]], 'abbreviated month name'), 145 ('%h', calendar.month_abbr[now[1]], 'abbreviated month name'),
|
/external/python/cpython3/Tools/scripts/ |
D | mailerdaemon.py | 207 date = '%s %02d' % (calendar.month_abbr[mm], dd)
|
/external/python/cpython2/Tools/scripts/ |
D | mailerdaemon.py | 199 date = '%s %02d' % (calendar.month_abbr[mm], dd)
|
/external/python/cpython2/Doc/library/ |
D | calendar.rst | 325 .. data:: month_abbr 329 has a length of 13 and ``month_abbr[0]`` is the empty string.
|
/external/python/cpython2/Lib/ |
D | _strptime.py | 100 a_month = [calendar.month_abbr[i].lower() for i in range(13)]
|
D | calendar.py | 91 month_abbr = _localized_month('%b') variable
|
/external/python/cpython3/Doc/library/ |
D | calendar.rst | 406 .. data:: month_abbr 410 has a length of 13 and ``month_abbr[0]`` is the empty string.
|
/external/python/cpython3/Lib/ |
D | _strptime.py | 99 a_month = [calendar.month_abbr[i].lower() for i in range(13)]
|
D | calendar.py | 94 month_abbr = _localized_month('%b') variable
|
/external/python/cpython2/Misc/ |
D | HISTORY | 2187 and ``month_abbr`` attributes emulate sequences of locale-correct
|
/external/python/cpython3/Misc/ |
D | HISTORY | 19571 and ``month_abbr`` attributes emulate sequences of locale-correct
|