summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-07-15 05:00:03 (GMT)
committerBenjamin Peterson <benjamin@python.org>2016-07-15 05:00:03 (GMT)
commite09ed5419b84040a6f5d74ec9a3ae4fd9b4bc0e5 (patch)
treeaa635fb5095afc603285433e46875096b2911619 /Misc
parent2b8792137bf5e02ee4263822f818b31b68830f4b (diff)
downloadcpython-e09ed5419b84040a6f5d74ec9a3ae4fd9b4bc0e5.zip
cpython-e09ed5419b84040a6f5d74ec9a3ae4fd9b4bc0e5.tar.gz
cpython-e09ed5419b84040a6f5d74ec9a3ae4fd9b4bc0e5.tar.bz2
make too many nested blocks be a SyntaxError instead of a SystemError (closes #27514)
Patch by Ammar Askar.
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 835304b..f10544c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #27514: Make having too many statically nested blocks a SyntaxError
+ instead of SystemError.
+
- Issue #27473: Fixed possible integer overflow in bytes and bytearray
concatenations. Patch by Xiang Zhang.