Remove object as the only ancestor for classes in Python 3 stubs.

This commit is contained in:
Semyon Proshev
2017-03-17 19:19:12 +03:00
committed by Łukasz Langa
parent efdf2f1b17
commit 4cd137189a
8 changed files with 12 additions and 12 deletions

View File

@@ -80,7 +80,7 @@ class type:
def __instancecheck__(self, instance: Any) -> bool: ...
def __subclasscheck__(self, subclass: type) -> bool: ...
class super(object):
class super:
@overload
def __init__(self, t: Any, obj: Any) -> None: ...
@overload