[issue33306] Improving SyntaxError for unmatched parentheses

2018-12-17 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue33306] Improving SyntaxError for unmatched parentheses

2018-12-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 94cf308ee231bfbfaa9ddc50b9764545a1318773 by Serhiy Storchaka in branch 'master': bpo-33306: Improve SyntaxError messages for unbalanced parentheses. (GH-6516) https://github.com/python/cpython/commit/94cf308ee231bfbfaa9ddc50b9764545a1318773

[issue33306] Improving SyntaxError for unmatched parentheses

2018-04-18 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +6209 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-

[issue33306] Improving SyntaxError for unmatched parentheses

2018-04-18 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : SyntaxError messages were improved recently in PyPy. [1] [2] The part of this improvement in CPython (showing an expected token) is discussed in issue1634034. The following PR implements other part, related to unmatched parentheses. Showing the number o