Use built-in generic (#5050)

This commit is contained in:
Sebastian Rittau
2021-02-23 10:04:51 +01:00
committed by GitHub
parent ffcd592aef
commit c8df617726
2 changed files with 23 additions and 23 deletions

View File

@@ -1,7 +1,5 @@
from typing import List, Tuple
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]]: ...
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