diff options
author | Eric Smith <eric@trueblade.com> | 2009-05-23 14:23:22 (GMT) |
---|---|---|
committer | Eric Smith <eric@trueblade.com> | 2009-05-23 14:23:22 (GMT) |
commit | 41669caebc62a63016d01c84f3bfd2eb219060b2 (patch) | |
tree | 61a3a7e237ad954e34c78a92a9b1c96e36704a4e /Misc | |
parent | db1c399fe08d8dc74916b3c945c8bc551b00ff7b (diff) | |
download | cpython-41669caebc62a63016d01c84f3bfd2eb219060b2.zip cpython-41669caebc62a63016d01c84f3bfd2eb219060b2.tar.gz cpython-41669caebc62a63016d01c84f3bfd2eb219060b2.tar.bz2 |
Merged revisions 72848 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r72848 | eric.smith | 2009-05-23 09:56:13 -0400 (Sat, 23 May 2009) | 1 line
Issue 6089: str.format raises SystemError.
........
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.1 release candidate 1? Core and Builtins ----------------- +- Issue #6089: Fixed str.format with certain invalid field specifiers + that would raise SystemError. + - Issue #5829: complex("1e500") no longer raises OverflowError. This makes it consistent with float("1e500") and interpretation of real and imaginary literals. |