Enable the entire TD category in Ruff

This commit is contained in:
Adam Turner
2025-01-14 12:52:43 +00:00
parent d102e62bc7
commit 3521cb60cf
5 changed files with 16 additions and 14 deletions

View File

@@ -314,8 +314,11 @@ def test_domain_c_ast_expressions():
expr_check('5 / 42')
expr_check('5 % 42')
# ['.*', '->*']
expr_check('5 .* 42')
expr_check('5 ->* 42')
# TODO: conditional is unimplemented
# conditional
# TODO
# expr_check('5 ? 7 : 3')
# assignment
expr_check('a = 5')
expr_check('a *= 5')