From a8ba4d3c24dee4cd36b173001ebcf83e30a2a534 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Mon, 6 Oct 2025 14:34:58 +0200 Subject: [PATCH] Adjust stubtest test stubs for PEP 728 (Python 3.15) --- mypy/test/teststubtest.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mypy/test/teststubtest.py b/mypy/test/teststubtest.py index 800f522d90a0..dfbde217e82f 100644 --- a/mypy/test/teststubtest.py +++ b/mypy/test/teststubtest.py @@ -88,6 +88,8 @@ class _TypedDict(Mapping[str, object]): __total__: ClassVar[bool] __readonly_keys__: ClassVar[frozenset[str]] __mutable_keys__: ClassVar[frozenset[str]] + __closed__: ClassVar[bool | None] + __extra_items__: ClassVar[Any] def overload(func: _T) -> _T: ... def type_check_only(func: _T) -> _T: ... def final(func: _T) -> _T: ...