Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.3k
Closed
Description
Bug report
Bug description:
InteractiveInterpreter.runsource() is supposed to return True when the input is incomplete, as per the doc:https://docs.python.org/3/library/code.html#code.InteractiveInterpreter.runsource. This appears to have regressed with f-strings in Python 3.12+
Python 3.11.2:
>>>code.InteractiveInterpreter().runsource('a = f"""')True
Python 3.12.1 or Python 3.13.0a2+ (heads/main:1ae7ceba29, Jan 4 2024, 16:18:49):
>>>code.InteractiveInterpreter().runsource('a = f"""')File"<input>",line1a= f"""^SyntaxError:unterminatedtriple-quotedf-stringliteral (detectedatline1)False
CPython versions tested on:
3.11, 3.12, 3.13
Operating systems tested on:
Linux