diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-11-25 23:03:22 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-11-25 23:03:22 (GMT) |
commit | e236c3c8c2799b4fc23f95206af61fa8f882a49c (patch) | |
tree | 4232aa13b951b13867019c6f86c08db64c1d61b1 /Doc | |
parent | bcfaf8007d8d14e3a6e65d13ad693b4874688cab (diff) | |
download | cpython-e236c3c8c2799b4fc23f95206af61fa8f882a49c.zip cpython-e236c3c8c2799b4fc23f95206af61fa8f882a49c.tar.gz cpython-e236c3c8c2799b4fc23f95206af61fa8f882a49c.tar.bz2 |
Forgot to add a `versionadded` tag
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/datetime.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst index bcc9530..4bfd9a3 100644 --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -276,6 +276,8 @@ Instance methods: 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: |