diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-09-22 08:18:10 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-09-22 08:18:10 (GMT) |
commit | 3a23017bb2309f6ba44090fb322f9681bf49c4c3 (patch) | |
tree | ffd83e481bb8e27942977b4ec7110e6d570ede04 /Misc | |
parent | 4a8fbdb1b2172e1954e652be7dda74d188a00fa5 (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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. |