summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-25 06:30:43 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-25 06:30:43 (GMT)
commit7db3c488335168993689ddae5914a28e16188447 (patch)
treed6961b3d600c2e3ca8969968f7fd3d1dd03e3f36 /Misc
parent802883a386b30e4fdfd93dfef0dafa723fbeee15 (diff)
downloadcpython-7db3c488335168993689ddae5914a28e16188447.zip
cpython-7db3c488335168993689ddae5914a28e16188447.tar.gz
cpython-7db3c488335168993689ddae5914a28e16188447.tar.bz2
Issue #28517: Fixed of-by-one error in the peephole optimizer that caused
keeping unreachable code.
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 5f00520..34b3b8a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.6.0 beta 3
Core and Builtins
-----------------
+- Issue #28517: Fixed of-by-one error in the peephole optimizer that caused
+ keeping unreachable code.
+
- Issue #28214: Improved exception reporting for problematic __set_name__
attributes.