mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
18 lines
583 B
Python
18 lines
583 B
Python
from typing import List, Tuple
|
|
|
|
class GetoptError(Exception):
|
|
opt = ... # type: str
|
|
msg = ... # type: str
|
|
def __init__(self, msg: str, opt: str=...) -> None: ...
|
|
def __str__(self) -> str: ...
|
|
|
|
error = GetoptError
|
|
|
|
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]]: ...
|