![]() + Extend the parser to recognize the multiline f-strings, which the documentation already implies will work. The syntax is like: ``` x = 'hello' y = 'world' msg = f'''This is a multiline string. Sending a message: '@x@ @y@' ''' ``` which produces: ``` This is a multiline string. Sending a message: 'hello world' ``` + Added some f-string tests cases to "62 string arithmetic" to exercise the new behavior. |
||
---|---|---|
.. | ||
__init__.py | ||
_unholder.py | ||
baseobjects.py | ||
decorators.py | ||
disabler.py | ||
exceptions.py | ||
helpers.py | ||
interpreterbase.py | ||
operator.py |