summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-07-12 08:38:00 (GMT)
committerGeorg Brandl <georg@python.org>2007-07-12 08:38:00 (GMT)
commit7c3b50db6614c677588096191d432e734257a244 (patch)
tree4cb3d1c23d831f1ed5267210be2164317043fce2 /Misc
parentbc5fbd9f8c1a271557846d7aa7a428ae25f901e8 (diff)
downloadcpython-7c3b50db6614c677588096191d432e734257a244.zip
cpython-7c3b50db6614c677588096191d432e734257a244.tar.gz
cpython-7c3b50db6614c677588096191d432e734257a244.tar.bz2
Patch #1673759: add a missing overflow check when formatting floats
with %G.
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 dfec57b..9bf357b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.6 alpha 1?
Core and builtins
-----------------
+- Patch #1673759: add a missing overflow check when formatting floats
+ with %G.
+
- Patch #1733960: Allow T_LONGLONG to accept ints.
- T_PYSSIZET can now be used in PyMemberDef lists for Py_ssize_t members.