diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-10-14 21:33:38 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-10-14 21:33:38 (GMT) |
commit | cbeb687c687e6edebd3afdb63be0a623294e744c (patch) | |
tree | 273d96ffef6560a4991173538ec512cdabf2cd79 /Misc | |
parent | 5a72372329e0c6a47d226cdc33f7a22e424bb0d0 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |