We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61e8179 commit 3d52548Copy full SHA for 3d52548
1 file changed
tests/test_slots.py
@@ -772,11 +772,13 @@ def f(self) -> int:
772
773
774
@pytest.mark.xfail(
775
- PY_3_14_PLUS, reason="3.14 returns weird annotation for cached_properies"
+ PY_3_14_PLUS, reason="3.14 does not infer the type anymore."
776
)
777
def test_slots_cached_property_infers_type():
778
"""
779
- Infers type of cached property.
+ Infers type of cached property on Python 3.13 and earlier.
780
+
781
+ See also #1431.
782
783
784
@attrs.frozen(slots=True)
0 commit comments