From e66c505ffc1dbc621e5fa90f3a9443ff35e18fb1 Mon Sep 17 00:00:00 2001 From: Lee Dogeon Date: Fri, 15 Aug 2025 10:24:32 +0900 Subject: [PATCH] Remove completed TODO --- extra_tests/snippets/syntax_fstring.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/extra_tests/snippets/syntax_fstring.py b/extra_tests/snippets/syntax_fstring.py index 5d274478f1..ec198a8125 100644 --- a/extra_tests/snippets/syntax_fstring.py +++ b/extra_tests/snippets/syntax_fstring.py @@ -54,12 +54,6 @@ part_spec = ">+#10x" assert f"{16:0{part_spec}}{foo}" == '00000+0x10bar' -# TODO: RUSTPYTHON, delete the next block once `test_fstring.py` can successfully parse -assert f'{10:#{1}0x}' == ' 0xa' -assert f'{10:{"#"}1{0}{"x"}}' == ' 0xa' -assert f'{-10:-{"#"}1{0}x}' == ' -0xa' -assert f'{-10:{"-"}#{1}0{"x"}}' == ' -0xa' - spec = "bla" assert_raises(ValueError, lambda: f"{16:{spec}}")