diff --git a/stdlib/2/types.pyi b/stdlib/2/types.pyi index 2f3b93549..15c8dd9c0 100644 --- a/stdlib/2/types.pyi +++ b/stdlib/2/types.pyi @@ -84,7 +84,12 @@ class UnboundMethodType: __func__ = im_func __self__ = im_self def __call__(self, *args: Any, **kwargs: Any) -> Any: ... -class InstanceType: ... + +class InstanceType: + __doc__ = ... # type: Optional[str] + __class__ = ... # type: type + __module__ = ... # type: Any + MethodType = UnboundMethodType class BuiltinFunctionType: