summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_fstring.py
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-137314: Fix incorrect treatment of format specs in raw fstrings (GH...Miss Islington (bot)2025-08-031-0/+28
* [3.13] gh-135148: Correctly handle f/t strings with comments and debug expres...Lysandros Nikolaou2025-07-211-0/+12
* [3.13] gh-128051: Fix tests if sys.float_repr_style is 'legacy' (#135908) (#1...Victor Stinner2025-06-301-4/+4
* [3.13] gh-135496: Fix f string exclamation mark error typo (GH-135495) (#135501)GiGaGon2025-06-141-1/+1
* [3.13] gh-129958: Properly disallow newlines in format specs in single-quoted...Łukasz Langa2025-04-181-0/+25
* [3.13] gh-129693: Suppress `SyntaxWarning` in test_fstring (GH-129830) (#130068)Miss Islington (bot)2025-02-131-2/+3
* [3.13] gh-124363: Treat debug expressions in f-string as raw strings (GH-1283...Miss Islington (bot)2025-01-221-0/+8
* [3.13] gh-129093: Fix f-string debug text sometimes getting cut off when expr...Miss Islington (bot)2025-01-221-0/+18
* [3.13] Fix typos (#123775) (#123866)Victor Stinner2024-10-071-2/+2
* [3.13] gh-122026: Fix identification of mismatched parentheses inside f-strin...Miss Islington (bot)2024-07-191-0/+1
* [3.13] gh-121130: Fix f-string format specifiers with debug expressions (GH-1...Pablo Galindo Salgado2024-07-161-0/+9
* gh-99606: Make code generated for an empty f-string identical to that of a no...Irit Katriel2023-11-261-0/+10
* gh-112243: Don't include comments in f-string debug expressions (#112284)Pablo Galindo Salgado2023-11-201-0/+3
* 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