Home
last modified time | relevance | path

Searched refs:astimezone (Results 1 – 22 of 22) sorted by relevance

/external/python/dateutil/dateutil/test/
Dtest_tz.py199 t0_syd0 = t0_u.astimezone(SYD)
200 t1_syd1 = t1_u.astimezone(SYD)
221 t0 = t0_u.astimezone(SYD)
222 t1 = t1_u.astimezone(SYD)
243 t0_tor = t0_u.astimezone(TOR)
244 t1_tor = t1_u.astimezone(TOR)
266 t0 = t0_u.astimezone(TOR)
267 t1 = t1_u.astimezone(TOR)
289 t0 = t0_u.astimezone(LON)
290 t1 = t1_u.astimezone(LON)
[all …]
Dtest_parser.py1070 assert dt.astimezone(tz.tzutc()) == dt_exp.astimezone(tz.tzutc())
1083 assert dt.astimezone(tz.tzutc()) == dt_exp.astimezone(tz.tzutc())
/external/python/cpython3/Lib/email/
Dutils.py151 dt = dt.astimezone()
354 return datetime.datetime.now(datetime.timezone.utc).astimezone()
356 return dt.astimezone()
/external/python/cpython3/Lib/test/
Ddatetimetester.py2531 self.assertEqual(dt.astimezone(), dt_utc) # naive
2532 self.assertRaises(TypeError, dt.astimezone, f, f) # too many args
2533 self.assertRaises(TypeError, dt.astimezone, dt) # arg wrong type
2535 self.assertEqual(dt.astimezone(f), dt_f) # naive
2536 self.assertEqual(dt.astimezone(tz=f), dt_f) # naive
2542 self.assertRaises(ValueError, dt.astimezone, bog) # naive
2543 self.assertEqual(dt.replace(tzinfo=bog).astimezone(f), dt_f)
2549 self.assertRaises(ValueError, dt.astimezone, alsobog) # also naive
2557 dt_broken.astimezone()
4071 now2 = utcnow.astimezone(weirdtz)
[all …]
Dtest_logging.py3547 r.created = time.mktime(dt.astimezone(None).timetuple())
/external/python/cpython2/Lib/test/
Dtest_datetime.py1682 self.assertRaises(TypeError, dt.astimezone) # not enough args
1683 self.assertRaises(TypeError, dt.astimezone, f, f) # too many args
1684 self.assertRaises(TypeError, dt.astimezone, dt) # arg wrong type
1685 self.assertRaises(ValueError, dt.astimezone, f) # naive
1686 self.assertRaises(ValueError, dt.astimezone, tz=f) # naive
1692 self.assertRaises(ValueError, dt.astimezone, bog) # naive
1698 self.assertRaises(ValueError, dt.astimezone, alsobog) # also naive
2694 now2 = utcnow.astimezone(weirdtz)
2928 self.assertRaises(ValueError, dt.astimezone, fnone)
2930 self.assertRaises(TypeError, dt.astimezone, None)
[all …]
/external/autotest/client/common_lib/
Dtime_utils.py120 utc_datetime = local_datetime.astimezone(tz=pytz.utc)
/external/python/cpython3/Tools/scripts/
Ddiff.py17 return t.astimezone().isoformat()
/external/python/cpython2/Doc/library/
Ddatetime.rst903 .. method:: datetime.astimezone(tz)
914 If ``self.tzinfo`` is *tz*, ``self.astimezone(tz)`` is equal to *self*: no
917 ``astz = dt.astimezone(tz)``, ``astz - astz.utcoffset()`` will usually have
929 :class:`tzinfo` subclass to affect the result returned by :meth:`astimezone`.
930 Ignoring error cases, :meth:`astimezone` acts like::
932 def astimezone(self, tz):
1161 >>> dt3 = dt2.astimezone(GMT2())
1423 only on geographic location. The implementation of :meth:`datetime.astimezone`
1427 :meth:`tzinfo.fromutc` to work correctly with :meth:`astimezone` regardless.
1488 This is called from the default :class:`datetime.astimezone()`
[all …]
/external/python/cpython3/Doc/library/
Ddatetime.rst1054 .. method:: datetime.astimezone(tz=None)
1069 If ``self.tzinfo`` is *tz*, ``self.astimezone(tz)`` is equal to *self*: no
1072 ``astz = dt.astimezone(tz)``, ``astz - astz.utcoffset()`` will have
1081 :class:`tzinfo` subclass to affect the result returned by :meth:`astimezone`.
1082 Ignoring error cases, :meth:`astimezone` acts like::
1084 def astimezone(self, tz):
1096 The :meth:`astimezone` method can now be called on naive instances that
1394 >>> dt3 = dt2.astimezone(GMT2())
1743 only on geographic location. The implementation of :meth:`datetime.astimezone`
1747 :meth:`tzinfo.fromutc` to work correctly with :meth:`astimezone` regardless.
[all …]
/external/python/dateutil/docs/
Dexamples.rst1227 >>> datetime.now(tzoffset("BRST", -10800)).astimezone(tzutc())
1247 >>> datetime.now(tzlocal()).astimezone(tzoffset(None, 0))
1306 >>> dt.astimezone(tz2).strftime('%X %x %Z')
1383 >>> datetime.now(tz).astimezone(tzutc())
/external/python/cpython3/Misc/NEWS.d/
D3.7.0rc1.rst56 returning None is now treated as naive by the astimezone() method.
D3.6.6rc1.rst133 returning None is now treated as naive by the astimezone() method.
D3.5.2rc1.rst906 Fixed a bug in datetime.astimezone() method.
D3.6.0a1.rst1424 Fixed a bug in datetime.astimezone() method.
/external/python/dateutil/dateutil/tz/
Dtz.py1537 dt_rt = dt.replace(tzinfo=tz).astimezone(tzutc()).astimezone(tz)
/external/python/cpython3/Lib/
Dimaplib.py1483 timezone.utc).astimezone()
Ddatetime.py1813 def astimezone(self, tz=None): member in datetime
/external/python/cpython3/Doc/whatsnew/
D3.6.rst483 ... t = u.astimezone(Eastern)
D3.3.rst1085 * The :meth:`datetime.datetime.astimezone` method can now be
/external/python/cpython2/Misc/
DHISTORY4647 In dt.astimezone(tz), if tz.utcoffset(dt) returns a duration,
4662 datetime.astimezone(tz) no longer raises an exception when the
4669 dt.astimezone() can no longer be used to convert between naive and aware
4677 a local time. The default astimezone() implementation calls fromutc()
/external/python/cpython3/Misc/
DHISTORY6657 - Issue #665194: Update `email.utils.localtime` to use datetime.astimezone and
7262 - Issue #9527: datetime.astimezone() method will now supply a class
22031 In dt.astimezone(tz), if tz.utcoffset(dt) returns a duration,
22046 datetime.astimezone(tz) no longer raises an exception when the
22053 dt.astimezone() can no longer be used to convert between naive and aware
22061 a local time. The default astimezone() implementation calls fromutc()