diff options
author | Martijn 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) |
commit | 680f04a926bce04e4320ba883068c345eba502a6 (patch) | |
tree | 1230385653b1591d47c03bfce0d814fe321777a0 /Misc/NEWS | |
parent | 468534d92f6879e925c4cd8a228ea300abfb7e4d (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |