[issue41681] f-string error description seems wrong

2020-09-01 Thread Hanish
Change by Hanish : -- pull_requests: +21150 pull_request: https://github.com/python/cpython/pull/22059 ___ Python tracker <https://bugs.python.org/issue41

[issue41681] f-string error description seems wrong

2020-08-31 Thread Hanish
Hanish added the comment: I have raised a pull request for the fix https://github.com/python/cpython/pull/22036. Your review is appreciated :) -- ___ Python tracker <https://bugs.python.org/issue41

[issue41681] f-string error description seems wrong

2020-08-31 Thread Hanish
Change by Hanish : -- keywords: +patch pull_requests: +21134 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22036 ___ Python tracker <https://bugs.python.org/issu

[issue41681] f-string error description seems wrong

2020-08-31 Thread Hanish
Hanish added the comment: Sure. Thanks for the quick response :) Let me see if i can try to come up with something :) -- versions: +Python 3.6, Python 3.7 ___ Python tracker <https://bugs.python.org/issue41

[issue41681] f-string error description seems wrong

2020-08-31 Thread Hanish
New submission from Hanish : There seems to an error in the `f-string` error description when one do: >>> f'{1:,,}' Traceback (most recent call last): File "", line 1, in ValueError: Cannot specify both ',' and '_'. >>> Th