Home
last modified time | relevance | path

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

12

/external/python/dateutil/dateutil/test/
Dtest_tz.py204 t0_syd0 = t0_u.astimezone(SYD)
205 t1_syd1 = t1_u.astimezone(SYD)
226 t0 = t0_u.astimezone(SYD)
227 t1 = t1_u.astimezone(SYD)
248 t0_tor = t0_u.astimezone(TOR)
249 t1_tor = t1_u.astimezone(TOR)
271 t0 = t0_u.astimezone(TOR)
272 t1 = t1_u.astimezone(TOR)
294 t0 = t0_u.astimezone(LON)
295 t1 = t1_u.astimezone(LON)
[all …]
Dtest_parser.py825 assert dt.astimezone(tz.tzutc()) == dt_exp.astimezone(tz.tzutc())
838 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.py2721 self.assertEqual(dt.astimezone(), dt_utc) # naive
2722 self.assertRaises(TypeError, dt.astimezone, f, f) # too many args
2723 self.assertRaises(TypeError, dt.astimezone, dt) # arg wrong type
2725 self.assertEqual(dt.astimezone(f), dt_f) # naive
2726 self.assertEqual(dt.astimezone(tz=f), dt_f) # naive
2732 self.assertRaises(ValueError, dt.astimezone, bog) # naive
2733 self.assertEqual(dt.replace(tzinfo=bog).astimezone(f), dt_f)
2739 self.assertRaises(ValueError, dt.astimezone, alsobog) # also naive
2747 dt_broken.astimezone()
2800 base_d.astimezone(timezone.utc)),
[all …]
Dtest_logging.py3897 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/asn1crypto/asn1crypto/
Dutil.py692 def astimezone(self, tz): member in extended_datetime
703 return extended_datetime.from_y2k(self._y2k.astimezone(tz))
Dcore.py4989 value = value.astimezone(utc_with_dst)
5086 value = value.astimezone(utc_with_dst)
/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.rst1230 .. method:: datetime.astimezone(tz=None)
1245 If ``self.tzinfo`` is *tz*, ``self.astimezone(tz)`` is equal to *self*: no
1248 ``astz = dt.astimezone(tz)``, ``astz - astz.utcoffset()`` will have
1257 :class:`tzinfo` subclass to affect the result returned by :meth:`astimezone`.
1258 Ignoring error cases, :meth:`astimezone` acts like::
1260 def astimezone(self, tz):
1272 The :meth:`astimezone` method can now be called on naive instances that
1602 # See datetime.astimezone or fromtimestamp.
1632 >>> dt3 = dt2.astimezone(timezone.utc)
1999 only on geographic location. The implementation of :meth:`datetime.astimezone`
[all …]
/external/python/dateutil/docs/
Dexamples.rst1240 >>> datetime.now(tzoffset("BRST", -10800)).astimezone(tzutc())
1260 >>> datetime.now(tzlocal()).astimezone(tzoffset(None, 0))
1319 >>> dt.astimezone(tz2).strftime('%X %x %Z')
1396 >>> 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.8.0a2.rst336 :meth:`datetime.datetime.astimezone` and alternate constructors like
D3.6.6rc1.rst133 returning None is now treated as naive by the astimezone() method.
D3.5.2rc1.rst905 Fixed a bug in datetime.astimezone() method.
D3.6.0a1.rst1423 Fixed a bug in datetime.astimezone() method.
D3.8.0a1.rst4230 returning None is now treated as naive by the astimezone() method.
/external/python/dateutil/dateutil/tz/
Dtz.py1698 dt_rt = dt.replace(tzinfo=tz).astimezone(tzutc()).astimezone(tz)
/external/python/cpython3/Lib/
Dimaplib.py1492 timezone.utc).astimezone()
Ddatetime.py1855 def astimezone(self, tz=None): member in datetime
/external/python/cpython3/Doc/whatsnew/
D3.8.rst450 :meth:`~datetime.datetime.astimezone`.
D3.6.rst483 ... t = u.astimezone(Eastern)
D3.3.rst1085 * The :meth:`datetime.datetime.astimezone` method can now be

12