]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.7] bpo-37500: update Misc/NEWS entries to mention revert
authorNed Deily <nad@python.org>
Mon, 8 Jul 2019 16:30:24 +0000 (12:30 -0400)
committerNed Deily <nad@python.org>
Mon, 8 Jul 2019 16:39:12 +0000 (12:39 -0400)
Misc/NEWS.d/3.7.4rc1.rst
Misc/NEWS.d/next/Core and Builtins/2019-07-08-12-28-26.bpo-37500.2OjTir.rst [new file with mode: 0644]

index 2706d9d5665fdf184db683197c632ff1578941ca..963cdca64d2fbc557d0f6a49a2fb89277b63d8df 100644 (file)
@@ -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 (file)
index 0000000..2472ef9
--- /dev/null
@@ -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.