In a formatted string using "lambda', we should not add "\n". For example in: f'{(lambda x:x)("8")!r}' Adding a "\n" after "lambda x: x" will give an error message: SyntaxError: f-string expression part cannot include a backslash
* Need parens around a lambda in an format string. * handle format string specifier + width Note: other format-string bugs remain.