[issue43809] Improve mismatching parentheses error

2021-04-15 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue43809] Improve mismatching parentheses error

2021-04-15 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: This is probably not worth the complexity, so I am closing it -- ___ Python tracker ___ __

[issue43809] Improve mismatching parentheses error

2021-04-11 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +24082 stage: -> patch review pull_request: https://github.com/python/cpython/pull/25348 ___ Python tracker __

[issue43809] Improve mismatching parentheses error

2021-04-11 Thread Pablo Galindo Salgado
New submission from Pablo Galindo Salgado : Consider the following program: ( a + b + c ] ) The current error is: >>> ( a + b + c ] ) File "", line 1 ( a + b + c ] ) ^ SyntaxError: closing parenthesis ']' does not match opening parenthesis '(' Which is not bad, but the