summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-12-29 22:39:49 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-12-29 22:39:49 (GMT)
commit7682d043634ea59fc994520ed1b2c305530cc343 (patch)
treee934977238c216303f8df0ef8e12f5eab515329e /Misc
parent2b4b2d1c882238787d0f341c11d13d92d6dd8df2 (diff)
downloadcpython-7682d043634ea59fc994520ed1b2c305530cc343.zip
cpython-7682d043634ea59fc994520ed1b2c305530cc343.tar.gz
cpython-7682d043634ea59fc994520ed1b2c305530cc343.tar.bz2
Merged revisions 77122 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r77122 | amaury.forgeotdarc | 2009-12-29 23:03:38 +0100 (mar., 29 déc. 2009) | 3 lines #7413: Passing '\0' as the separator to datetime.datetime.isoformat() used to drop the time part of the result. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 234e55a..7e7b060 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.6.5
Core and Builtins
-----------------
+- Issue #7413: Passing '\0' as the separator to datetime.datetime.isoformat()
+ used to drop the time part of the result.
+
- Issue #6108: unicode(exception) and str(exception) should return the same
message when only __str__ (and not __unicode__) is overridden in the subclass.