summaryrefslogtreecommitdiffstats
path: root/Doc/library/datetime.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-09-19 10:42:34 (GMT)
committerGeorg Brandl <georg@python.org>2009-09-19 10:42:34 (GMT)
commit592c58d35656df3ddb73d9dd453e142f3eb4735a (patch)
tree3e9323eb75501147d7ff0d2d7414637bea21e828 /Doc/library/datetime.rst
parentd25fb2ff1f97e93209ad677a5a79c85dcba30f45 (diff)
downloadcpython-592c58d35656df3ddb73d9dd453e142f3eb4735a.zip
cpython-592c58d35656df3ddb73d9dd453e142f3eb4735a.tar.gz
cpython-592c58d35656df3ddb73d9dd453e142f3eb4735a.tar.bz2
#6946: fix duplicate index entries for datetime classes.
Diffstat (limited to 'Doc/library/datetime.rst')
-rw-r--r--Doc/library/datetime.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst
index 5539c5a..7251479 100644
--- a/Doc/library/datetime.rst
+++ b/Doc/library/datetime.rst
@@ -65,6 +65,7 @@ Available Types
.. class:: date
+ :noindex:
An idealized naive date, assuming the current Gregorian calendar always was, and
always will be, in effect. Attributes: :attr:`year`, :attr:`month`, and
@@ -72,6 +73,7 @@ Available Types
.. class:: time
+ :noindex:
An idealized time, independent of any particular day, assuming that every day
has exactly 24\*60\*60 seconds (there is no notion of "leap seconds" here).
@@ -80,6 +82,7 @@ Available Types
.. class:: datetime
+ :noindex:
A combination of a date and a time. Attributes: :attr:`year`, :attr:`month`,
:attr:`day`, :attr:`hour`, :attr:`minute`, :attr:`second`, :attr:`microsecond`,
@@ -87,6 +90,7 @@ Available Types
.. class:: timedelta
+ :noindex:
A duration expressing the difference between two :class:`date`, :class:`time`,
or :class:`datetime` instances to microsecond resolution.