[issue34364] problem with traceback for syntax error in f-string

2020-11-19 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue34364] problem with traceback for syntax error in f-string

2019-05-28 Thread Denis S. Otkidach
Change by Denis S. Otkidach : -- nosy: +ods ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue34364] problem with traceback for syntax error in f-string

2018-10-28 Thread Anthony Sottile
Change by Anthony Sottile : -- keywords: +patch pull_requests: +9494 stage: needs patch -> patch review ___ Python tracker ___ ___ P

[issue34364] problem with traceback for syntax error in f-string

2018-09-24 Thread Eric V. Smith
Eric V. Smith added the comment: It's more elaborate than I'd like, but I think it's the right way to solve it: I'm passing in the starting line and column number to the parser machinery. -- ___ Python tracker

[issue34364] problem with traceback for syntax error in f-string

2018-09-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Great! I was going to take it. Will be glad to make a review. -- ___ Python tracker ___ ___ Pyt

[issue34364] problem with traceback for syntax error in f-string

2018-09-24 Thread Eric V. Smith
Eric V. Smith added the comment: I worked on this at the core sprint, and I have a patch almost ready. -- ___ Python tracker ___ __

[issue34364] problem with traceback for syntax error in f-string

2018-09-24 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue34364] problem with traceback for syntax error in f-string

2018-08-08 Thread Eric V. Smith
Eric V. Smith added the comment: I think this is a duplicate, but I can't find the exact issue. I don't think it's exactly the same as #29051. -- assignee: -> eric.smith components: +Interpreter Core nosy: +eric.smith stage: -> needs patch type: -> behavior versions: +Python 3.6, P

[issue34364] problem with traceback for syntax error in f-string

2018-08-08 Thread Josh Rosenberg
Josh Rosenberg added the comment: So the bug is that the line number and module are incorrect for the f-string, right? Nothing else? -- nosy: +josh.r ___ Python tracker ___ _

[issue34364] problem with traceback for syntax error in f-string

2018-08-08 Thread bob gailer
New submission from bob gailer : Inconsistent tracebacks. Note that the traceback for bug.py does not reference the module file and line number. # bug.py def f():   f'''   {d e}''' a=b import bug Traceback (most recent call last):   File "", line 1     (d e)    ^ SyntaxError: invalid