summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_fstring.py
Commit message (Expand)AuthorAgeFilesLines
* [3.8] bpo-32912: Revert SyntaxWarning on invalid escape sequences (GH-15142)Serhiy Storchaka2019-08-091-1/+1
* [3.8] Fix typos in docs, comments and test assert messages (GH-14872). (#14900)Kyle Stanley2019-07-221-1/+1
* bpo-37050: Remove expr_text from FormattedValue ast node, use Constant node i...Eric V. Smith2019-05-271-0/+18
* bpo-36817: Do not decrement reference for expr_text on fstring = parsing fail...Pablo Galindo2019-05-121-0/+2
* bpo-36817: Add f-string debugging using '='. (GH-13123)Eric V. Smith2019-05-081-0/+109
* bpo-16806: Fix `lineno` and `col_offset` for multi-line string tokens (GH-10021)Anthony Sottile2019-01-131-19/+13
* bpo-35494: Improve syntax error messages for unbalanced parentheses in f-stri...Serhiy Storchaka2019-01-121-13/+23
* bpo-33306: Improve SyntaxError messages for unbalanced parentheses. (GH-6516)Serhiy Storchaka2018-12-171-4/+8
* bpo-32912: Replace a DeprecationWarning with a SyntaxWarning (GH-9652)Serhiy Storchaka2018-10-191-1/+1
* bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445)Serhiy Storchaka2018-09-271-8/+16
* bpo-30465: Fix lineno and col_offset in fstring AST nodes (#1800)Ɓukasz Langa2017-09-071-0/+248
* bpo-30682: Removed a too-strict assertion that failed for certain f-strings. ...ericvsmith2017-06-161-0/+6
* bpo-30529: Fix errors for invalid whitespaces in f-string subexpressions. (#1...Serhiy Storchaka2017-06-081-0/+10
* bpo-29104: Fixed parsing backslashes in f-strings. (#490)Serhiy Storchaka2017-05-251-0/+14
* Issue #28739: f-string expressions no longer accepted as docstrings andSerhiy Storchaka2016-12-111-10/+10
* Fixed issue #28633: segfault when concatenating bytes literal and f-string.Eric V. Smith2016-11-071-0/+7
* Update test_no_escapes_for_braces to clarify behavior with a docstring and ex...Jason R. Coombs2016-11-061-5/+8
* Additionally show that a backslash-escaped opening brace is treated as a lite...Jason R. Coombs2016-11-061-0/+1
* Add an additional test with a newline, one that's very similar to test_parens...Jason R. Coombs2016-11-061-0/+1
* Update the f-string test broken in issue #28385.Serhiy Storchaka2016-10-311-1/+1
* Add another f-string comment test, to make sure # are being caught in the rig...Eric V. Smith2016-09-111-0/+2
* Make an f-string error message more exact and consistent.Eric V. Smith2016-09-111-1/+2
* Issue 27948: Allow backslashes in the literal string portion of f-strings, bu...Eric V. Smith2016-09-101-46/+86
* Closes issue 27921: Disallow backslashes anywhere in f-strings. This is a tem...Eric V. Smith2016-09-031-91/+51
* Issue #27626: Further spelling fixes for 3.6Martin Panter2016-07-281-1/+1
* Fix issue 26287: While handling FORMAT_VALUE opcode, the top of stack was bei...Eric V. Smith2016-02-051-0/+11
* f-strings: More tests for empty expressions along with missing closing braces.Eric V. Smith2015-09-231-0/+7
* Added more f-string test for empty expressions.Eric V. Smith2015-09-231-0/+3
* Move f-string compilation of the expression earlier, before the conversion ch...Eric V. Smith2015-09-231-0/+9
* Issue #24965: Implement PEP 498 "Literal String Interpolation". Documentation...Eric V. Smith2015-09-191-0/+715