summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2008-07-17 18:30:48 (GMT)
committerEric Smith <eric@trueblade.com>2008-07-17 18:30:48 (GMT)
commita4fac36eb3ee70529482d43d2a484d5ff5d18398 (patch)
treef28ae6605017ff42d83cdf78978391b4c7237079 /Misc
parentddc5669fd90135ba345a9f1a98a11c67a97f833e (diff)
downloadcpython-a4fac36eb3ee70529482d43d2a484d5ff5d18398.zip
cpython-a4fac36eb3ee70529482d43d2a484d5ff5d18398.tar.gz
cpython-a4fac36eb3ee70529482d43d2a484d5ff5d18398.tar.bz2
Merged revisions 65069 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r65069 | eric.smith | 2008-07-17 13:48:39 -0400 (Thu, 17 Jul 2008) | 1 line Issue 3382: Make '%F' and float.__format__('F') convert results to upper case. ........
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 5628940..232d5c3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's new in Python 3.0b2?
Core and Builtins
-----------------
+- Issue #3382: Make '%F' and float.__format__('F') convert results
+ to uppercase.
+
- Issue #3008: the float type has a new instance method 'float.hex'
and a new class method 'float.fromhex' to convert floating-point
numbers to and from hexadecimal strings, respectively.