[issue43822] Improve syntax errors for missing commas

2021-07-18 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: -25769 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue43822] Improve syntax errors for missing commas

2021-07-18 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +25769 pull_request: https://github.com/python/cpython/pull/27228 ___ Python tracker ___ ___

[issue43822] Improve syntax errors for missing commas

2021-05-03 Thread miss-islington
miss-islington added the comment: New changeset d1ff838d1091853ed6f56bc1573606dc0d74a691 by Miss Islington (bot) in branch '3.10': bpo-43822: Prioritize tokenizer errors over custom syntax errors when raising parser exceptions (GH-25866) https://github.com/python/cpython/commit/d1ff838d10918

[issue43822] Improve syntax errors for missing commas

2021-05-03 Thread miss-islington
miss-islington added the comment: New changeset 756b7b9248885d65c2b3b9f1c5a8f66aa2e8de7a by Miss Islington (bot) in branch '3.10': bpo-43822: Prioritize tokenizer errors over custom syntax errors when raising parser exceptions (GH-25866) https://github.com/python/cpython/commit/756b7b9248885

[issue43822] Improve syntax errors for missing commas

2021-05-03 Thread miss-islington
Change by miss-islington : -- pull_requests: +24550 pull_request: https://github.com/python/cpython/pull/25870 ___ Python tracker ___ __

[issue43822] Improve syntax errors for missing commas

2021-05-03 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 1.0 -> 2.0 pull_requests: +24549 pull_request: https://github.com/python/cpython/pull/25869 ___ Python tracker _

[issue43822] Improve syntax errors for missing commas

2021-05-03 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +24547 pull_request: https://github.com/python/cpython/pull/25866 ___ Python tracker ___ ___

[issue43822] Improve syntax errors for missing commas

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

[issue43822] Improve syntax errors for missing commas

2021-04-15 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset b280248be8e648feb82f3f3ed0050e50b238df7b by Pablo Galindo in branch 'master': bpo-43822: Improve syntax errors for missing commas (GH-25377) https://github.com/python/cpython/commit/b280248be8e648feb82f3f3ed0050e50b238df7b -- _

[issue43822] Improve syntax errors for missing commas

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

[issue43822] Improve syntax errors for missing commas

2021-04-12 Thread Pablo Galindo Salgado
New submission from Pablo Galindo Salgado : Given that is quite common to forgot a comma in containers, function calls, ...etc and that the current error is: >>> [a, b, c d] File "", line 1 [a, b, c d] ^ SyntaxError: invalid syntax We could improve the user experience quite