[Python-checkins] r76531 - python/trunk/Doc/library/datetime.rst

antoine.pitrou python-checkins at python.org
Thu Nov 26 00:03:23 CET 2009


Author: antoine.pitrou
Date: Thu Nov 26 00:03:22 2009
New Revision: 76531

Log:
Forgot to add a `versionadded` tag



Modified:
   python/trunk/Doc/library/datetime.rst

Modified: python/trunk/Doc/library/datetime.rst
==============================================================================
--- python/trunk/Doc/library/datetime.rst	(original)
+++ python/trunk/Doc/library/datetime.rst	Thu Nov 26 00:03:22 2009
@@ -276,6 +276,8 @@
    Return the total number of seconds contained in the duration. Equivalent to
    ``td.microseconds / 1000000 + td.seconds + td.days * 24 * 3600``.
 
+   .. versionadded:: 2.7
+
 
 Example usage:
 


More information about the Python-checkins mailing list