Skip to content

Commit c4bf27b

Browse files
authored
Copy __builtin__.pyi to builtins.pyi, to fix breakage caused by #2128 (#2215)
1 parent 4e6af84 commit c4bf27b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/2/builtins.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class object:
2929
__doc__ = ... # type: Optional[str]
3030
__class__ = ... # type: type
3131
__dict__ = ... # type: Dict[str, Any]
32-
__slots__ = ... # type: Optional[Union[str, unicode, Iterable[Union[str, unicode]]]]
32+
__slots__ = ... # type: Union[str, unicode, Iterable[Union[str, unicode]]]
3333
__module__ = ... # type: str
3434

3535
def __init__(self) -> None: ...

0 commit comments

Comments
 (0)