http/html stubtest fixes (#5208)

This commit is contained in:
hatal175
2021-04-12 14:37:09 +03:00
committed by GitHub
parent 7adb0213f7
commit 2ae49e1307
6 changed files with 37 additions and 29 deletions

View File

@@ -3,7 +3,7 @@ from typing import List, Optional, Tuple
class HTMLParser(ParserBase):
def __init__(self, *, convert_charrefs: bool = ...) -> None: ...
def feed(self, feed: str) -> None: ...
def feed(self, data: str) -> None: ...
def close(self) -> None: ...
def reset(self) -> None: ...
def getpos(self) -> Tuple[int, int]: ...