[issue46240] Incorrect hint about forgetting a comma

2022-01-22 Thread STINNER Victor
STINNER Victor added the comment: Ah, thanks for the backport :-) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue46240] Incorrect hint about forgetting a comma

2022-01-22 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 633db1c4eb863a1340e45c353e36f2f8dcf5945c by Pablo Galindo Salgado in branch '3.10': [3.10] bpo-46240: Correct the error for unclosed parentheses when the tokenizer is not finished (GH-30378). (GH-30819) https://github.com/python/cpython/

[issue46240] Incorrect hint about forgetting a comma

2022-01-22 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +29005 stage: resolved -> patch review pull_request: https://github.com/python/cpython/pull/30819 ___ Python tracker ___ ___

[issue46240] Incorrect hint about forgetting a comma

2022-01-22 Thread STINNER Victor
STINNER Victor added the comment: I reopen the issue: the backport to 3.10 failed, PR 30390. Tests failed and there is now a merge conflict. Either decide to not backport the fix, or please update the backport. -- nosy: +vstinner resolution: fixed -> status: closed -> open

[issue46240] Incorrect hint about forgetting a comma

2022-01-04 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Thanks Andre for the report! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue46240] Incorrect hint about forgetting a comma

2022-01-04 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 70f415fb8b632247e28d87998642317ca7a652ae by Pablo Galindo Salgado in branch 'main': bpo-46240: Correct the error for unclosed parentheses when the tokenizer is not finished (GH-30378) https://github.com/python/cpython/commit/70f415fb8b63

[issue46240] Incorrect hint about forgetting a comma

2022-01-04 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +28599 pull_request: https://github.com/python/cpython/pull/30390 ___ Python tracker _

[issue46240] Incorrect hint about forgetting a comma

2022-01-03 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +28588 stage: -> patch review pull_request: https://github.com/python/cpython/pull/30378 ___ Python tracker __

[issue46240] Incorrect hint about forgetting a comma

2022-01-03 Thread Andre Roberge
New submission from Andre Roberge : Given the following code containing an unclosed parenthesis: a = (1, 2 b = 3 Here is the resulting SyntaxError: > python ignore.py File "C:\...\ignore.py", line 1 a = (1, 2 ^ SyntaxError: invalid syntax. Perhaps you forgot a comma? This i