Files
ruff/crates/ty_python_semantic/src
Charlie Marsh c28c1f534d [ty] Check __delitem__ instead of __getitem__ for del x[k] (#22121)
## Summary

Previously, `del x[k]` incorrectly required the object to have a
`__getitem__` method. This was wrong because deletion only needs
`__delitem__`, which is independent of `__getitem__`.

Closes https://github.com/astral-sh/ty/issues/1799.
2025-12-24 03:34:20 +00:00
..
2025-08-07 18:21:50 +02:00
2025-12-23 13:48:14 +00:00