Kaydet (Commit) 151973e1 authored tarafından Georg Brandl's avatar Georg Brandl

#1436346: make it more obvious that timetuple[7] is yday.

üst fee0f44b
...@@ -455,7 +455,9 @@ Instance methods: ...@@ -455,7 +455,9 @@ Instance methods:
Return a :class:`time.struct_time` such as returned by :func:`time.localtime`. Return a :class:`time.struct_time` such as returned by :func:`time.localtime`.
The hours, minutes and seconds are 0, and the DST flag is -1. ``d.timetuple()`` The hours, minutes and seconds are 0, and the DST flag is -1. ``d.timetuple()``
is equivalent to ``time.struct_time((d.year, d.month, d.day, 0, 0, 0, is equivalent to ``time.struct_time((d.year, d.month, d.day, 0, 0, 0,
d.weekday(), d.toordinal() - date(d.year, 1, 1).toordinal() + 1, -1))`` d.weekday(), yday, -1))``, where ``yday = d.toordinal() - date(d.year, 1,
1).toordinal() + 1`` is the day number within the current year starting with
``1`` for January 1st.
.. method:: date.toordinal() .. method:: date.toordinal()
...@@ -920,12 +922,13 @@ Instance methods: ...@@ -920,12 +922,13 @@ Instance methods:
Return a :class:`time.struct_time` such as returned by :func:`time.localtime`. Return a :class:`time.struct_time` such as returned by :func:`time.localtime`.
``d.timetuple()`` is equivalent to ``time.struct_time((d.year, d.month, d.day, ``d.timetuple()`` is equivalent to ``time.struct_time((d.year, d.month, d.day,
d.hour, d.minute, d.second, d.weekday(), d.toordinal() - date(d.year, 1, d.hour, d.minute, d.second, d.weekday(), yday, dst))``, where ``yday =
1).toordinal() + 1, dst))`` The :attr:`tm_isdst` flag of the result is set d.toordinal() - date(d.year, 1, 1).toordinal() + 1`` is the day number within
according to the :meth:`dst` method: :attr:`tzinfo` is ``None`` or :meth:`dst` the current year starting with ``1`` for January 1st. The :attr:`tm_isdst` flag
returns ``None``, :attr:`tm_isdst` is set to ``-1``; else if :meth:`dst` of the result is set according to the :meth:`dst` method: :attr:`tzinfo` is
returns a non-zero value, :attr:`tm_isdst` is set to ``1``; else ``tm_isdst`` is ``None`` or :meth:`dst`` returns ``None``, :attr:`tm_isdst` is set to ``-1``;
set to ``0``. else if :meth:`dst` returns a non-zero value, :attr:`tm_isdst` is set to ``1``;
else ``tm_isdst`` is set to ``0``.
.. method:: datetime.utctimetuple() .. method:: datetime.utctimetuple()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment