diff options
Diffstat (limited to 'tests/basics/string_fstring.py')
-rw-r--r-- | tests/basics/string_fstring.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/basics/string_fstring.py b/tests/basics/string_fstring.py index efb7e5a8e1..4f7225fcad 100644 --- a/tests/basics/string_fstring.py +++ b/tests/basics/string_fstring.py @@ -12,17 +12,11 @@ print(f"""no interpolation""") x, y = 1, 2 print(f'{x}') print(f'{x:08x}') -print(f'{x=}') -print(f'{x=:08x}') print(f'a {x} b {y} c') print(f'a {x:08x} b {y} c') -print(f'a {x=} b {y} c') -print(f'a {x=:08x} b {y} c') print(f'a {"hello"} b') print(f'a {f() + g("foo") + h()} b') -print(f'a {f() + g("foo") + h()=} b') -print(f'a {f() + g("foo") + h()=:08x} b') def foo(a, b): return f'{x}{y}{a}{b}' |