Searched refs:_monthnames (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython2/Lib/email/ |
D | _parseaddr.py | 23 _monthnames = ['jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', variable 76 if mm not in _monthnames: 78 if mm not in _monthnames: 80 mm = _monthnames.index(mm) + 1
|
/external/python/cpython3/Lib/email/ |
D | _parseaddr.py | 23 _monthnames = ['jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', variable 97 if mm not in _monthnames: 99 if mm not in _monthnames: 101 mm = _monthnames.index(mm) + 1
|
/external/python/cpython2/Lib/ |
D | rfc822.py | 834 _monthnames = ['jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', variable 887 if not mm in _monthnames: 889 if not mm in _monthnames: 891 mm = _monthnames.index(mm)+1
|