We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b612c9 commit ac87de5Copy full SHA for ac87de5
stdlib/2/types.pyi
@@ -82,6 +82,7 @@ class UnboundMethodType:
82
im_class = ... # type: type
83
im_func = ... # type: FunctionType
84
im_self = ... # type: Optional[object]
85
+ __name__ = ... # type: str
86
__func__ = im_func
87
__self__ = im_self
88
def __call__(self, *args: Any, **kwargs: Any) -> Any: ...
stdlib/3/types.pyi
@@ -139,6 +139,7 @@ class _StaticFunctionType:
139
class MethodType:
140
__func__ = ... # type: _StaticFunctionType
141
__self__ = ... # type: object
142
143
144
class BuiltinFunctionType:
145
__self__ = ... # type: Union[object, ModuleType]
0 commit comments