Skip to content

Commit af9b8e2

Browse files
committed
Fixes
1 parent 00183cf commit af9b8e2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

stdlib/multiprocessing/managers.pyi

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,11 @@ if sys.version_info >= (3, 13):
9494
def items(self) -> list[tuple[_KT, _VT]]: ... # type: ignore[override]
9595
def values(self) -> list[_VT]: ... # type: ignore[override]
9696
if sys.version_info >= (3, 14):
97-
def __ior__(self, value: Mapping[_KT, _VT], /) -> Self: ... # type: ignore[override,misc]
98-
def __or__(self, value: Mapping[_KT, _VT], /) -> dict[_KT, _VT]: ... # type: ignore[override,misc]
99-
def __reversed__(self) -> Iterator[_KT]: ...
100-
def __ror__(self, value: Mapping[_KT, _VT], /) -> dict[_KT, _VT]: ... # type: ignore[override,misc]
101-
def fromkeys(self, iterable: Iterable[_KT], value: _VT, /) -> dict[_KT, _VT]: ... # type: ignore[override,misc]
97+
def __ior__(self, value: Mapping[_KT, _VT], /) -> Self: ... # type: ignore[misc]
98+
def __or__(self, value: Mapping[_KT, _VT], /) -> dict[_KT, _VT]: ... # type: ignore[misc]
99+
def __reversed__(self) -> Iterator[_KT]: ... # type: ignore[misc]
100+
def __ror__(self, value: Mapping[_KT, _VT], /) -> dict[_KT, _VT]: ... # type: ignore[misc]
101+
def fromkeys(self, iterable: Iterable[_KT], value: _VT, /) -> dict[_KT, _VT]: ... # type: ignore[misc]
102102

103103
class DictProxy(_BaseDictProxy[_KT, _VT]):
104104
def __class_getitem__(cls, args: Any, /) -> GenericAlias: ...
@@ -204,8 +204,8 @@ class BaseListProxy(BaseProxy, MutableSequence[_T]):
204204
@overload
205205
def sort(self, *, key: Callable[[_T], SupportsRichComparison], reverse: bool = ...) -> None: ...
206206
if sys.version_info >= (3, 14):
207-
def clear(self) -> None: ...
208-
def copy(self) -> list[_T]: ...
207+
def clear(self) -> None: ... # type: ignore[misc]
208+
def copy(self) -> list[_T]: ... # type: ignore[misc]
209209

210210
class ListProxy(BaseListProxy[_T]):
211211
def __iadd__(self, value: Iterable[_T], /) -> Self: ... # type: ignore[override]

0 commit comments

Comments
 (0)