mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
9 lines
320 B
Python
9 lines
320 B
Python
def getopt(args: list[str], shortopts: str, longopts: list[str] = ...) -> tuple[list[tuple[str, str]], list[str]]: ...
|
|
def gnu_getopt(args: list[str], shortopts: str, longopts: list[str] = ...) -> tuple[list[tuple[str, str]], list[str]]: ...
|
|
|
|
class GetoptError(Exception):
|
|
msg: str
|
|
opt: str
|
|
|
|
error = GetoptError
|