Copy __builtin__.pyi to builtins.pyi, to fix breakage caused by #2128 (#2215)

This commit is contained in:
Guido van Rossum
2018-06-11 15:10:22 -07:00
committed by GitHub
parent 4e6af84640
commit c4bf27b835

View File

@@ -29,7 +29,7 @@ class object:
__doc__ = ... # type: Optional[str]
__class__ = ... # type: type
__dict__ = ... # type: Dict[str, Any]
__slots__ = ... # type: Optional[Union[str, unicode, Iterable[Union[str, unicode]]]]
__slots__ = ... # type: Union[str, unicode, Iterable[Union[str, unicode]]]
__module__ = ... # type: str
def __init__(self) -> None: ...