Searched refs:USTimeZone (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Doc/includes/ |
D | tzinfo-examples.py | 116 class USTimeZone(tzinfo): class 166 Eastern = USTimeZone(-5, "Eastern", "EST", "EDT") 167 Central = USTimeZone(-6, "Central", "CST", "CDT") 168 Mountain = USTimeZone(-7, "Mountain", "MST", "MDT") 169 Pacific = USTimeZone(-8, "Pacific", "PST", "PDT")
|
/external/python/cpython3/Doc/includes/ |
D | tzinfo_examples.py | 110 class USTimeZone(tzinfo): class 172 Eastern = USTimeZone(-5, "Eastern", "EST", "EDT") 173 Central = USTimeZone(-6, "Central", "CST", "CDT") 174 Mountain = USTimeZone(-7, "Mountain", "MST", "MDT") 175 Pacific = USTimeZone(-8, "Pacific", "PST", "PDT")
|
/external/python/cpython2/Lib/test/ |
D | test_datetime.py | 3069 class USTimeZone(tzinfo): class 3111 Eastern = USTimeZone(-5, "Eastern", "EST", "EDT") 3112 Central = USTimeZone(-6, "Central", "CST", "CDT") 3113 Mountain = USTimeZone(-7, "Mountain", "MST", "MDT") 3114 Pacific = USTimeZone(-8, "Pacific", "PST", "PDT") 3313 class FauxUSTimeZone(USTimeZone):
|
/external/python/cpython3/Lib/test/ |
D | datetimetester.py | 4489 class USTimeZone(tzinfo): class 4531 Eastern = USTimeZone(-5, "Eastern", "EST", "EDT") 4532 Central = USTimeZone(-6, "Central", "CST", "CDT") 4533 Mountain = USTimeZone(-7, "Mountain", "MST", "MDT") 4534 Pacific = USTimeZone(-8, "Pacific", "PST", "PDT") 4746 class FauxUSTimeZone(USTimeZone):
|