fix typo in http.client (#985)

This commit is contained in:
Jelle Zijlstra
2017-03-12 19:33:47 -07:00
committed by Guido van Rossum
parent 555f45b876
commit 47a19c761c

View File

@@ -97,7 +97,7 @@ if sys.version_info >= (3, 5):
def getheader(self, name: str, default: _T) -> Union[str, _T]: ...
def getheaders(self) -> List[Tuple[str, str]]: ...
def fileno(self) -> int: ...
def isclosed(self): bool
def isclosed(self) -> bool: ...
def __iter__(self) -> Iterator[bytes]: ...
def __enter__(self) -> 'HTTPResponse': ...
def __exit__(self, exc_type: Optional[type],