为什么在 vscode python-language-server 中 optparse.pyi 实现的末尾写了三个 (...) 点?

Why there are three (...) dots written in the end of optparse.pyi implementation in vscode python-language-server?

我经常在很多程序的源代码中遇到三点(...)。我 google 关于它,但我没有找到任何相关的答案。我想知道为什么这些......在 python 库 optparse 的源代码实现方法的末尾。这是库中的示例 Class。

class HelpFormatter:
    def __init__(self, indent_increment: int, max_help_position: int, width: Optional[int], short_first: int) -> None: ...
    def _format__Text(self, _Text: _Text) -> _Text: ...
    def dedent(self) -> None: ...
    def expand_default(self, option: Option) -> _Text: ...
    def format_description(self, description: _Text) -> _Text: ...
    def format_epilog(self, epilog: _Text) -> _Text: ...
    def format_heading(self, heading: Any) -> _Text: ...
    def format_option(self, option: OptionParser) -> _Text: ...
    def format_option_strings(self, option: OptionParser) -> Any: ...
    def format_usage(self, usage: Any) -> _Text: ...
    def indent(self) -> None: ...
    def set_long_opt_delimiter(self, delim: _Text) -> None: ...
    def set_parser(self, parser: OptionParser) -> None: ...
    def set_short_opt_delimiter(self, delim: _Text) -> None: ...
    def store_option_strings(self, parser: OptionParser) -> None: ...

为什么上面代码的每个方法的末尾都有...点。它的目的是什么?

这是代码的样子

我认为,这是一种“接口”实现。等于:

def func():
    pass