diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2014-09-18 01:06:50 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2014-09-18 01:06:50 (GMT) |
commit | e7811fca5ed60ce84ee78327ed485f76a0a09814 (patch) | |
tree | 2202d8f6218777b9468a7d289d677b346b281dff /Misc | |
parent | 87538e7bc46885d2ad2cce423603b45d182d6d40 (diff) | |
download | cpython-e7811fca5ed60ce84ee78327ed485f76a0a09814.zip cpython-e7811fca5ed60ce84ee78327ed485f76a0a09814.tar.gz cpython-e7811fca5ed60ce84ee78327ed485f76a0a09814.tar.bz2 |
Closes #11471: avoid generating a JUMP_FORWARD instruction at the end of an if-block if there is no else-clause.
Original patch by Eugene Toder.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ Release date: TBA Core and Builtins ----------------- +- Issue #11471: avoid generating a JUMP_FORWARD instruction at the end of + an if-block if there is no else-clause. Original patch by Eugene Toder. + - Issue #22215: Now ValueError is raised instead of TypeError when str or bytes argument contains not permitted null character or byte. |