]> granicus.if.org Git - python/commitdiff
#6946: fix duplicate index entries for datetime classes.
authorGeorg Brandl <georg@python.org>
Sat, 19 Sep 2009 10:42:34 +0000 (10:42 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 19 Sep 2009 10:42:34 +0000 (10:42 +0000)
Doc/library/datetime.rst

index 5539c5a940700bea17753439fb4239878eba1662..7251479826f49526fd886ac319193b44ec6233e8 100644 (file)
@@ -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.