summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-10-14 21:33:38 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-10-14 21:33:38 (GMT)
commitcbeb687c687e6edebd3afdb63be0a623294e744c (patch)
tree273d96ffef6560a4991173538ec512cdabf2cd79 /Misc
parent5a72372329e0c6a47d226cdc33f7a22e424bb0d0 (diff)
downloadcpython-cbeb687c687e6edebd3afdb63be0a623294e744c.zip
cpython-cbeb687c687e6edebd3afdb63be0a623294e744c.tar.gz
cpython-cbeb687c687e6edebd3afdb63be0a623294e744c.tar.bz2
Update the peephole optimizer to remove more dead code (jumps after returns)
and inline jumps to returns.
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 cd21eea..9800a9b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.6 alpha 1?
Core and builtins
-----------------
+- Update the peephole optimizer to remove more dead code (jumps after returns)
+ and inline unconditional jumps to returns.
+
- Bug #1545497: when given an explicit base, int() did ignore NULs
embedded in the string to convert.