summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-09-22 08:18:10 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-09-22 08:18:10 (GMT)
commit3a23017bb2309f6ba44090fb322f9681bf49c4c3 (patch)
treeffd83e481bb8e27942977b4ec7110e6d570ede04 /Misc
parent4a8fbdb1b2172e1954e652be7dda74d188a00fa5 (diff)
downloadcpython-3a23017bb2309f6ba44090fb322f9681bf49c4c3.zip
cpython-3a23017bb2309f6ba44090fb322f9681bf49c4c3.tar.gz
cpython-3a23017bb2309f6ba44090fb322f9681bf49c4c3.tar.bz2
Bug #1557232: fix seg fault with def f((((x)))) and def f(((x),)).
These tests should be improved. Hopefully this fixes variations when flipping back and forth between fpdef and fplist. Backport candidate.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e93a80e..d7f1e75 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 2.6 alpha 1?
Core and builtins
-----------------
+- Bug #1557232: fix seg fault with def f((((x)))) and def f(((x),)).
+
- Fix %zd string formatting on Mac OS X so it prints negative numbers.
- Allow exception instances to be directly sliced again.