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.
........
diff --git a/Misc/NEWS b/Misc/NEWS
index e2b1415..7cbe87a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@
 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