mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
ror implementation (#5369)
Signed-off-by: sachindavra <raju.davra@gmail.com>
This commit is contained in:
@@ -827,6 +827,7 @@ class dict(MutableMapping[_KT, _VT], Generic[_KT, _VT]):
|
||||
if sys.version_info >= (3, 9):
|
||||
def __class_getitem__(cls, item: Any) -> GenericAlias: ...
|
||||
def __or__(self, __value: Mapping[_KT, _VT]) -> Dict[_KT, _VT]: ...
|
||||
def __ror__(self, __value: Mapping[_KT, _VT]) -> Dict[_KT, _VT]: ...
|
||||
def __ior__(self, __value: Mapping[_KT, _VT]) -> Dict[_KT, _VT]: ...
|
||||
|
||||
class set(MutableSet[_T], Generic[_T]):
|
||||
|
||||
Reference in New Issue
Block a user