Skip to content

Commit 834cc68

Browse files
committed
Skip __annotations_cache__ in test_iface for Python 3.14 compatibility
Python 3.14 added __annotations_cache__ to MutableSequence, which the Cython extension class does not implement. Add it to the SKIP_METHODS set alongside the other CPython internals already skipped there.
1 parent 51ea448 commit 834cc68

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/test_frozenlist.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ class FrozenListMixin:
1717
"__slots__",
1818
"__static_attributes__",
1919
"__firstlineno__",
20+
"__annotations_cache__",
2021
}
2122

2223
def test___class_getitem__(self) -> None:

0 commit comments

Comments
 (0)