Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES/723.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix a test regression in Python 3.15.0a2.
3 changes: 3 additions & 0 deletions tests/test_frozenlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ class FrozenListMixin:
"__slots__",
"__static_attributes__",
"__firstlineno__",
# Since Python 3.15.0a2: https://github.com/python/cpython/pull/132345
Copy link

@stefanor stefanor Dec 5, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was backported to 3.14.0, too.

"__annotate_func__",
"__annotations_cache__",
}

def test___class_getitem__(self) -> None:
Expand Down
Loading