summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-09-18 01:06:50 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-09-18 01:06:50 (GMT)
commite7811fca5ed60ce84ee78327ed485f76a0a09814 (patch)
tree2202d8f6218777b9468a7d289d677b346b281dff /Misc
parent87538e7bc46885d2ad2cce423603b45d182d6d40 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6bb5b27..6adc7fa 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.