| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-07-03 | Finalize the release. | Jussi Pakkanen | |
| 2022-05-01 | Add support for multiline f-strings | Peter Lesslie | |
| + 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. | |||
