Inherit InstanceType from object (#2511)

This commit is contained in:
Semyon Proshev
2018-10-08 15:31:21 +03:00
committed by Sebastian Rittau
parent 1b37ca4297
commit 4859742087

View File

@@ -88,9 +88,8 @@ class UnboundMethodType:
def __init__(self, func: Callable, obj: object) -> None: ...
def __call__(self, *args: Any, **kwargs: Any) -> Any: ...
class InstanceType:
__doc__ = ... # type: Optional[str]
__module__ = ... # type: Any
class InstanceType(object):
pass
MethodType = UnboundMethodType