builtins: add __build_class__ (#7324)

This commit is contained in:
Shantanu
2022-02-20 16:16:07 -08:00
committed by GitHub
parent a0901817cf
commit 94127ca2f5

View File

@@ -1547,6 +1547,7 @@ def __import__(
fromlist: Sequence[str] = ...,
level: int = ...,
) -> types.ModuleType: ...
def __build_class__(__func: Callable[[], _Cell | Any], __name: str, *bases: Any, metaclass: Any = ..., **kwds: Any) -> Any: ...
# Actually the type of Ellipsis is <type 'ellipsis'>, but since it's
# not exposed anywhere under that name, we make it private here.