summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-11-25 23:02:32 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-11-25 23:02:32 (GMT)
commitbe6859d877193004781c5b0b69f87b3ab5704ea1 (patch)
tree1a8448b965063fcea20203bfd949f215034155c0 /Misc
parent7d7aede558bc93196a40bd00fd857f57d00dd5bc (diff)
downloadcpython-be6859d877193004781c5b0b69f87b3ab5704ea1.zip
cpython-be6859d877193004781c5b0b69f87b3ab5704ea1.tar.gz
cpython-be6859d877193004781c5b0b69f87b3ab5704ea1.tar.bz2
Merged revisions 76529 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r76529 | antoine.pitrou | 2009-11-25 23:59:36 +0100 (mer., 25 nov. 2009) | 4 lines Issue #5788: `datetime.timedelta` objects get a new `total_seconds()` method returning the total number of seconds in the duration. Patch by Brian Quinlan. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 70e0e1c..c7df776 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -140,6 +140,10 @@ C-API
Library
-------
+- Issue #5788: `datetime.timedelta` objects get a new `total_seconds()`
+ method returning the total number of seconds in the duration. Patch by
+ Brian Quinlan.
+
- Issue #7133: SSL objects now support the new buffer API.
- Issue #1488943: difflib.Differ() doesn't always add hints for tab characters