diff options
author | Eric Smith <eric@trueblade.com> | 2010-02-22 18:54:44 (GMT) |
---|---|---|
committer | Eric Smith <eric@trueblade.com> | 2010-02-22 18:54:44 (GMT) |
commit | 4e260c5636d5dac66d72b869bb21b2010e278fc9 (patch) | |
tree | 024492e10b06464e82485b36f7b91d194e3ebbf3 /Misc | |
parent | ac0b889e82e01740aaee788868afe7724cb141fd (diff) | |
download | cpython-4e260c5636d5dac66d72b869bb21b2010e278fc9.zip cpython-4e260c5636d5dac66d72b869bb21b2010e278fc9.tar.gz cpython-4e260c5636d5dac66d72b869bb21b2010e278fc9.tar.bz2 |
Merged revisions 78329 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78329 | eric.smith | 2010-02-22 13:33:47 -0500 (Mon, 22 Feb 2010) | 1 line
Issue #7988: Fix default alignment to be right aligned for complex.__format__. Now it matches other numeric types.
........
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 3.2 Alpha 1? Core and Builtins ----------------- +- Issue #7988: Fix default alignment to be right aligned for + complex.__format__. Now it matches other numeric types. + - Issue #5988: Remove deprecated functions PyOS_ascii_formatd, PyOS_ascii_strtod, and PyOS_ascii_atof. Use PyOS_double_to_string and PyOS_string_to_double instead. See issue #5835 for the original |