fix some missing ", ..." in tuples (#1079)

This commit is contained in:
Jelle Zijlstra
2017-03-22 21:04:39 -07:00
committed by Guido van Rossum
parent de95aac022
commit c1944f944e
4 changed files with 7 additions and 7 deletions

View File

@@ -84,7 +84,7 @@ def setlocale(category: int,
locale: Union[_str, Iterable[_str], None] = ...) -> _str: ...
def localeconv() -> Mapping[_str, Union[int, _str, List[int]]]: ...
def nl_langinfo(option: int) -> _str: ...
def getdefaultlocale(envvars: Tuple[_str] = ...) -> Tuple[Optional[_str], Optional[_str]]: ...
def getdefaultlocale(envvars: Tuple[_str, ...] = ...) -> Tuple[Optional[_str], Optional[_str]]: ...
def getlocale(category: int = ...) -> Sequence[_str]: ...
def getpreferredencoding(do_setlocale: bool = ...) -> _str: ...
def normalize(localename: _str) -> _str: ...