summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-08-01 10:41:49 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-08-01 10:41:49 (GMT)
commit5b65df7ce200fd4320fe5db1a307ee438de7a5ee (patch)
tree5c1e679831cf9052232040d6252955b2458fd85d /Misc/NEWS
parent8708e385979ca6978da681ff6a27888facc41ba4 (diff)
downloadcpython-5b65df7ce200fd4320fe5db1a307ee438de7a5ee.zip
cpython-5b65df7ce200fd4320fe5db1a307ee438de7a5ee.tar.gz
cpython-5b65df7ce200fd4320fe5db1a307ee438de7a5ee.tar.bz2
Issue #9416: Fix some issues with complex formatting where the
output with no type specifier failed to match the str output: - format(complex(-0.0, 2.0), '-') omitted the real part from the output, - format(complex(0.0, 2.0), '-') included a sign and parentheses.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 96ff051..eb4fdca 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,12 @@ What's New in Python 3.2 Alpha 2?
Core and Builtins
-----------------
+- Issue #9416: Fix some issues with complex formatting where the
+ output with no type specifier failed to match the str output:
+
+ - format(complex(-0.0, 2.0), '-') omitted the real part from the output,
+ - format(complex(0.0, 2.0), '-') included a sign and parentheses.
+
Library
-------