From 1048250c04ecc0c856e61b07a6f3e9f9c5cd9463 Mon Sep 17 00:00:00 2001 From: sachindavra Date: Fri, 7 May 2021 23:40:07 +0530 Subject: [PATCH] ror implementation (#5369) Signed-off-by: sachindavra --- stdlib/builtins.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stdlib/builtins.pyi b/stdlib/builtins.pyi index 4ca869ff8..279a6295c 100644 --- a/stdlib/builtins.pyi +++ b/stdlib/builtins.pyi @@ -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]):