summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Deily <nad@python.org>2019-07-08 12:30:24 -0400
committerNed Deily <nad@python.org>2019-07-08 12:39:12 -0400
commit87a918a0035da576207b85b6844f64fbb9b4c0af (patch)
treefdb2d6902785f4897866eb510f236229ac63906f
parent4834c80d799471a6c9ddaad9c5c82c8af156e4fd (diff)
downloadcpython-git-87a918a0035da576207b85b6844f64fbb9b4c0af.tar.gz
[3.7] bpo-37500: update Misc/NEWS entries to mention revert
-rw-r--r--Misc/NEWS.d/3.7.4rc1.rst2
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2019-07-08-12-28-26.bpo-37500.2OjTir.rst3
2 files changed, 4 insertions, 1 deletions
diff --git a/Misc/NEWS.d/3.7.4rc1.rst b/Misc/NEWS.d/3.7.4rc1.rst
index 2706d9d566..963cdca64d 100644
--- a/Misc/NEWS.d/3.7.4rc1.rst
+++ b/Misc/NEWS.d/3.7.4rc1.rst
@@ -131,7 +131,7 @@ ensure GC-ed objects are aligned properly. Patch by Inada Naoki.
A :exc:`SyntaxError` is now raised if a code blocks that will be optimized
away (e.g. if conditions that are always false) contains syntax errors.
-Patch by Pablo Galindo.
+Patch by Pablo Galindo. (Reverted in 3.7.4 final by :issue:`37500`.)
..
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-07-08-12-28-26.bpo-37500.2OjTir.rst b/Misc/NEWS.d/next/Core and Builtins/2019-07-08-12-28-26.bpo-37500.2OjTir.rst
new file mode 100644
index 0000000000..2472ef9161
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2019-07-08-12-28-26.bpo-37500.2OjTir.rst
@@ -0,0 +1,3 @@
+Due to unintended side effects, revert the change introduced by
+:issue:`1875` in 3.7.4rc1 to check for syntax errors in dead conditional
+code blocks.