Searched refs:USTimeZone (Results 1 - 4 of 4) sorted by relevance
/external/python/cpython2/Doc/includes/ |
H A D | tzinfo-examples.py | 116 class USTimeZone(tzinfo): class in inherits:tzinfo 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/ |
H A D | tzinfo-examples.py | 110 class USTimeZone(tzinfo): class in inherits:tzinfo 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/ |
H A D | test_datetime.py | 3029 class USTimeZone(tzinfo): class in inherits:tzinfo 3071 Eastern = USTimeZone(-5, "Eastern", "EST", "EDT") 3072 Central = USTimeZone(-6, "Central", "CST", "CDT") 3073 Mountain = USTimeZone(-7, "Mountain", "MST", "MDT") 3074 Pacific = USTimeZone(-8, "Pacific", "PST", "PDT") 3273 class FauxUSTimeZone(USTimeZone):
|
/external/python/cpython3/Lib/test/ |
H A D | datetimetester.py | 3679 class USTimeZone(tzinfo): class in inherits:tzinfo 3721 Eastern = USTimeZone(-5, "Eastern", "EST", "EDT") 3722 Central = USTimeZone(-6, "Central", "CST", "CDT") 3723 Mountain = USTimeZone(-7, "Mountain", "MST", "MDT") 3724 Pacific = USTimeZone(-8, "Pacific", "PST", "PDT") 3936 class FauxUSTimeZone(USTimeZone):
|
Completed in 166 milliseconds