summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_fstring.py
Commit message (Expand)AuthorAgeFilesLines
* gh-110309: Prune empty constant in format specs (#110320)sunmy20192023-10-051-0/+48
* gh-109114: Relax the check for invalid lambdas inside f-strings to avoid fals...Pablo Galindo Salgado2023-09-081-0/+4
* gh-107967: Fix infinite recursion on invalid escape sequence warning (#107968)Lysandros Nikolaou2023-08-151-0/+10
* gh-106396: Special-case empty format spec to gen empty JoinedStr node (#106401)Lysandros Nikolaou2023-07-041-0/+18
* gh-105915: Fix SyntaxWarning becoming a SyntaxError with -We in test_fstring ...Lysandros Nikolaou2023-06-201-3/+3
* gh-105915: Add 'r' prefix to not emit SyntaxWarning in test_fstring (#105940)Lysandros Nikolaou2023-06-201-1/+1
* gh-105938: Emit a SyntaxWarning for escaped braces in an f-string (#105939)Lysandros Nikolaou2023-06-201-2/+9
* gh-105820: Fix tok_mode expression buffer in file & readline tokenizer (#105828)Lysandros Nikolaou2023-06-151-1/+14
* gh-105800: Issue SyntaxWarning in f-strings for invalid escape sequences (#10...Pablo Galindo Salgado2023-06-151-0/+3
* gh-105194: Fix format specifier escaped characters in f-strings (#105231)Pablo Galindo Salgado2023-06-021-0/+10
* gh-102856: Allow comments inside multi-line f-string expresions (#104006)Cristián Maureira-Fredes2023-05-221-3/+38
* gh-104658: Fix location of unclosed quote error for multiline f-strings (#104...Pablo Galindo Salgado2023-05-201-1/+15
* gh-104089: catch DeprecationWarning in `test_fstring` (#104137)sunmy20192023-05-041-5/+12
* gh-104016: Skip test for deeply neste f-strings on wasi (#104071)Pablo Galindo Salgado2023-05-011-3/+4
* gh-104016: Fixed off by 1 error in f string tokenizer (#104047)jx1242023-05-011-0/+16
* gh-103656: Transfer f-string buffers to parser to avoid use-after-free (GH-10...Lysandros Nikolaou2023-04-271-0/+14
* GH-103727: Avoid advancing tokenizer too far in f-string mode (GH-103775)Lysandros Nikolaou2023-04-241-6/+4
* GH-103718: Correctly cache and restore f-string buffers when needed (GH-103719)Lysandros Nikolaou2023-04-231-0/+5
* gh-102856: Skip test_mismatched_parens in WASI builds (#103633)Pablo Galindo Salgado2023-04-191-0/+2
* gh-102856: Initial implementation of PEP 701 (#102855)Pablo Galindo Salgado2023-04-191-74/+237
* Fix typo in test_fstring.py (#101823)mjoerg2023-02-111-1/+1
* Fix typo in `test_fstring.py` (#101600)Ikko Eltociear Ashimine2023-02-091-1/+1
* gh-98401: Invalid escape sequences emits SyntaxWarning (#99011)Victor Stinner2022-11-031-1/+1
* gh-94869: Fix the location in some expressions for multi-line f-string ast no...Pablo Galindo Salgado2022-07-161-2/+31
* gh-93418: Fix an assert when an f-string expression is followed by an '=', bu...Eric V. Smith2022-06-011-0/+1
* gh-93283: Improve error message for f-string with invalid conversion characte...Serhiy Storchaka2022-05-311-11/+22
* bpo-47129: Add more informative messages to f-string syntax errors (32127)Maciej Górski2022-03-281-11/+29
* bpo-46762: Fix an assert failure in f-strings where > or < is the last charac...Eric V. Smith2022-02-161-0/+2
* bpo-46503: Prevent an assert from firing when parsing some invalid \N sequenc...Eric V. Smith2022-01-251-0/+4
* bpo-45727: Only trigger the 'did you forgot a comma' error suggestion if insi...Pablo Galindo Salgado2021-11-241-1/+1
* bpo-44885: Correct the ast locations of f-strings with format specs and repea...Pablo Galindo Salgado2021-08-121-11/+29
* bpo-43797: Improve syntax error for invalid comparisons (#25317)Pablo Galindo2021-04-121-3/+3
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25171)Inada Naoki2021-04-041-1/+1
* bpo-41064: Improve syntax error for invalid usage of '**' in f-strings (GH-25...Pablo Galindo2021-03-241-0/+9
* bpo-42986: Fix parser crash when reporting syntax errors in f-string with new...Pablo Galindo2021-01-311-0/+3
* bpo-40176: Improve error messages for unclosed string literals (GH-19346)Batuhan Taskaya2021-01-201-1/+1
* bpo-42806: Fix ast locations of f-strings inside parentheses (GH-24067)Pablo Galindo2021-01-031-0/+53
* Fixed mistake in test for f-string error description (GH-22036) (GH-22059)han-solo2020-09-021-1/+1
* bpo-41681: Fix for `f-string/str.format` error description when using 2 `,` i...han-solo2020-09-011-0/+20
* bpo-40275: Use new test.support helper submodules in tests (GH-21315)Hai Shi2020-07-061-1/+1
* bpo-41084: Adjust message when an f-string expression causes a SyntaxError (G...Lysandros Nikolaou2020-06-261-3/+7
* bpo-41069: Make TESTFN and the CWD for tests containing non-ascii characters....Serhiy Storchaka2020-06-251-2/+3
* bpo-40939: Remove the old parser (GH-20768)Pablo Galindo2020-06-111-2/+1
* bpo-40904: Fix segfault in the new parser with f-string containing yield stat...Pablo Galindo2020-06-081-0/+2
* bpo-38964: Print correct filename on a SyntaxError in an fstring (GH-20399)Lysandros Nikolaou2020-05-261-0/+13
* bpo-40593: Improve syntax errors for invalid characters in source code. (GH-2...Serhiy Storchaka2020-05-121-1/+1
* bpo-40246: Revert reporting of invalid string prefixes (GH-19888)Lysandros Nikolaou2020-05-041-1/+1
* bpo-40443: Remove unused imports in tests (GH-19804)Victor Stinner2020-04-301-2/+0
* bpo-40334: Fix shifting of nested f-strings in the new parser (GH-19771)Lysandros Nikolaou2020-04-291-2/+1
* bpo-40334: Rename PyConfig.use_peg to _use_peg_parser (GH-19670)Victor Stinner2020-04-231-1/+2