File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -122,6 +122,9 @@ class staticmethod(object): # Special, only valid as a decorator.
122122 def __new__ (cls : Type [_T ], * args : Any , ** kwargs : Any ) -> _T : ...
123123 def __get__ (self , __obj : _T , __type : Type [_T ] | None = ...) -> Callable [..., Any ]: ...
124124 if sys .version_info >= (3 , 10 ):
125+ __name__ : str
126+ __qualname__ : str
127+ __wrapped__ : Callable [..., Any ]
125128 def __call__ (self , * args : Any , ** kwargs : Any ) -> Any : ...
126129
127130class classmethod (object ): # Special, only valid as a decorator.
@@ -130,6 +133,10 @@ class classmethod(object): # Special, only valid as a decorator.
130133 def __init__ (self , __f : Callable [..., Any ]) -> None : ...
131134 def __new__ (cls : Type [_T ], * args : Any , ** kwargs : Any ) -> _T : ...
132135 def __get__ (self , __obj : _T , __type : Type [_T ] | None = ...) -> Callable [..., Any ]: ...
136+ if sys .version_info >= (3 , 10 ):
137+ __name__ : str
138+ __qualname__ : str
139+ __wrapped__ : Callable [..., Any ]
133140
134141class type (object ):
135142 __base__ : type
You can’t perform that action at this time.
0 commit comments