[issue43914] Highlight invalid ranges in SyntaxErrors

2021-10-04 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 0eb57c3be47e45b10124428ab45827467cd2d58e by Pablo Galindo (Łukasz Langa) in branch '3.10': [3.10] bpo-43914: What's New 3.10: add new SyntaxError attributes (GH-28558) (GH-28562)

[issue43914] Highlight invalid ranges in SyntaxErrors

2021-09-27 Thread miss-islington
miss-islington added the comment: New changeset 9e209d48cac35108f3955d3f610b6ce60b574ecc by Miss Islington (bot) in branch '3.10': bpo-43914: Correctly highlight SyntaxError exceptions for invalid generator expression in function calls (GH-28576)

[issue43914] Highlight invalid ranges in SyntaxErrors

2021-09-27 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset e5f13ce5b48b551c09fdd0faeafa6ecf860de51c by Pablo Galindo Salgado in branch 'main': bpo-43914: Correctly highlight SyntaxError exceptions for invalid generator expression in function calls (GH-28576)

[issue43914] Highlight invalid ranges in SyntaxErrors

2021-09-27 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 6.0 -> 7.0 pull_requests: +26964 pull_request: https://github.com/python/cpython/pull/28582 ___ Python tracker

[issue43914] Highlight invalid ranges in SyntaxErrors

2021-09-26 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +26959 pull_request: https://github.com/python/cpython/pull/28576 ___ Python tracker ___

[issue43914] Highlight invalid ranges in SyntaxErrors

2021-09-25 Thread Łukasz Langa
Łukasz Langa added the comment: This is complete now. Thanks! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.11 ___ Python tracker

[issue43914] Highlight invalid ranges in SyntaxErrors

2021-09-25 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset c523022ba8f81a3661b4ac8be81706ed095d5769 by Łukasz Langa in branch '3.10': [3.10] bpo-43914: What's New 3.10: add new SyntaxError attributes (GH-28558) (GH-28562) https://github.com/python/cpython/commit/c523022ba8f81a3661b4ac8be81706ed095d5769

[issue43914] Highlight invalid ranges in SyntaxErrors

2021-09-25 Thread Łukasz Langa
Change by Łukasz Langa : -- pull_requests: +26945 pull_request: https://github.com/python/cpython/pull/28562 ___ Python tracker ___

[issue43914] Highlight invalid ranges in SyntaxErrors

2021-09-25 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 71f8ff45c62bd6b792919ac7c3804a8628ae12cb by Terry Jan Reedy in branch 'main': bpo-43914: Whats New 310: add new SyntaxError attributes (GH-28558) https://github.com/python/cpython/commit/71f8ff45c62bd6b792919ac7c3804a8628ae12cb -- nosy:

[issue43914] Highlight invalid ranges in SyntaxErrors

2021-09-24 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +26941 pull_request: https://github.com/python/cpython/pull/28558 ___ Python tracker ___

[issue43914] Highlight invalid ranges in SyntaxErrors

2021-04-25 Thread Andre Roberge
Change by Andre Roberge : -- nosy: +aroberge ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue43914] Highlight invalid ranges in SyntaxErrors

2021-04-24 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +24302 stage: -> patch review pull_request: https://github.com/python/cpython/pull/25582 ___ Python tracker ___

[issue43914] Highlight invalid ranges in SyntaxErrors

2021-04-24 Thread Terry J. Reedy
Terry J. Reedy added the comment: Great!!! I also tried >>> try: compile("a xyzjdkjfk", '', 'single') except SyntaxError as e: print(e, e.msg, e.lineno, e.offset, e.end_lineno, e.end_offset) invalid syntax. Perhaps you forgot a comma? (, line 1) invalid syntax. Perhaps you

[issue43914] Highlight invalid ranges in SyntaxErrors

2021-04-23 Thread Éric Araujo
Éric Araujo added the comment: What a great, useful change! -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list

[issue43914] Highlight invalid ranges in SyntaxErrors

2021-04-23 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset a77aac4fca9723b8fd52a832f3e9df13beb25113 by Pablo Galindo in branch 'master': bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525) https://github.com/python/cpython/commit/a77aac4fca9723b8fd52a832f3e9df13beb25113 --

[issue43914] Highlight invalid ranges in SyntaxErrors

2021-04-22 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- components: +Parser ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue43914] Highlight invalid ranges in SyntaxErrors

2021-04-22 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +lys.nikolaou stage: patch review -> ___ Python tracker ___ ___ Python-bugs-list

[issue43914] Highlight invalid ranges in SyntaxErrors

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

[issue43914] Highlight invalid ranges in SyntaxErrors

2021-04-22 Thread Pablo Galindo Salgado
New submission from Pablo Galindo Salgado : To improve the user experience understanding what part of the error messages associated to SyntaxErrors are wrong, we can highlight the whole error range and not only place the caret at the first character. In this way: >>> foo(x, z for z in

[issue43914] Highlight invalid ranges in SyntaxErrors

2021-04-22 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- versions: +Python 3.10 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: