diff --git a/stdlib/builtins.pyi b/stdlib/builtins.pyi index 0b87751437db..517c8d1f7cfd 100644 --- a/stdlib/builtins.pyi +++ b/stdlib/builtins.pyi @@ -1980,10 +1980,6 @@ def __import__( ) -> types.ModuleType: ... def __build_class__(func: Callable[[], CellType | Any], name: str, /, *bases: Any, metaclass: Any = ..., **kwds: Any) -> Any: ... -# Backwards compatibility hack for folks who relied on the ellipsis type -# existing in typeshed in Python 3.9 and earlier. -ellipsis = EllipsisType - Ellipsis: EllipsisType NotImplemented: NotImplementedType