summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-12-29 22:03:38 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-12-29 22:03:38 (GMT)
commit8645a5c81fde0afe0e00e122b64f6bc586844ec3 (patch)
treef6d47e62249f6bfd1dd253deb0b82bb460c4cd65 /Misc
parentfa1ffb69c48edd7c24918407d8b6b80186463602 (diff)
downloadcpython-8645a5c81fde0afe0e00e122b64f6bc586844ec3.zip
cpython-8645a5c81fde0afe0e00e122b64f6bc586844ec3.tar.gz
cpython-8645a5c81fde0afe0e00e122b64f6bc586844ec3.tar.bz2
#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 b23c672..26b33b2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 2?
Core and Builtins
-----------------
+- Issue #7413: Passing '\0' as the separator to datetime.datetime.isoformat()
+ used to drop the time part of the result.
+
- Issue #1811: improve accuracy and cross-platform consistency for
true division of integers: the result of a/b is now correctly
rounded for ints a and b (at least on IEEE 754 platforms), and in