1. 4cc30ae Issue #28739: f-string expressions no longer accepted as docstrings and by Serhiy Storchaka · 8 years ago
  2. 9b88fdf Fixed issue #28633: segfault when concatenating bytes literal and f-string. by Eric V. Smith · 8 years ago
  3. 1c92a76 Update test_no_escapes_for_braces to clarify behavior with a docstring and expressions that clearly are not evaluated. by Jason R. Coombs · 8 years ago
  4. da25abf7 Additionally show that a backslash-escaped opening brace is treated as a literal and thus triggers the single closing brace error, clarifying #28590. by Jason R. Coombs · 8 years ago
  5. 45cab8c Add an additional test with a newline, one that's very similar to test_parens_in_expressions, but because the newline is not a literal newline, but a backslash en, this error is triggered. by Jason R. Coombs · 8 years ago
  6. 13c8f32 Update the f-string test broken in issue #28385. by Serhiy Storchaka · 8 years ago
  7. 35a24c5 Add another f-string comment test, to make sure # are being caught in the right place. by Eric V. Smith · 8 years ago
  8. 09835dc Make an f-string error message more exact and consistent. by Eric V. Smith · 8 years ago
  9. 451d0e3 Issue 27948: Allow backslashes in the literal string portion of f-strings, but not in the expressions. Also, require expressions to begin and end with literal curly braces. by Eric V. Smith · 8 years ago
  10. 6a4efce Closes issue 27921: Disallow backslashes anywhere in f-strings. This is a temporary restriction. In 3.6 beta 2, the plan is to again allow backslashes in the string parts of f-strings, but disallow them in the expression parts. by Eric V. Smith · 8 years ago
  11. 263893c Issue #27626: Further spelling fixes for 3.6 by Martin Panter · 8 years ago
  12. 135d5f4 Fix issue 26287: While handling FORMAT_VALUE opcode, the top of stack was being corrupted if an error occurred in PyObject_Format(). by Eric V. Smith · 9 years ago
  13. b2080f6 f-strings: More tests for empty expressions along with missing closing braces. by Eric V. Smith · 9 years ago
  14. 548c4d3 Added more f-string test for empty expressions. by Eric V. Smith · 9 years ago
  15. 1d44c41 Move f-string compilation of the expression earlier, before the conversion character and format_spec are checked. This allows for error messages that more closely match what a user would expect. by Eric V. Smith · 9 years ago
  16. 235a6f0 Issue #24965: Implement PEP 498 "Literal String Interpolation". Documentation is still needed, I'll open an issue for that. by Eric V. Smith · 9 years ago