summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMartijn Pieters <github.com@zopatista.com>2017-08-22 20:11:09 (GMT)
committerƁukasz Langa <lukasz@langa.pl>2017-08-22 20:11:09 (GMT)
commit680f04a926bce04e4320ba883068c345eba502a6 (patch)
tree1230385653b1591d47c03bfce0d814fe321777a0 /Misc/NEWS
parent468534d92f6879e925c4cd8a228ea300abfb7e4d (diff)
downloadcpython-680f04a926bce04e4320ba883068c345eba502a6.zip
cpython-680f04a926bce04e4320ba883068c345eba502a6.tar.gz
cpython-680f04a926bce04e4320ba883068c345eba502a6.tar.bz2
bpo-31161: only check for parens error for SyntaxError (#3083)
Subclasses such as IndentError and TabError should not have this message applied.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e7e9cb4..309b466 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.6.3 release candidate 1?
Core and Builtins
-----------------
+- bpo-31161: Make sure the 'Missing parentheses' syntax error message is
+ only applied to SyntaxError, not to subclasses. Patch by Martijn Pieters.
+
- bpo-30814: Fixed a race condition when import a submodule from a package.
- bpo-30597: ``print`` now shows expected input in custom error message when