Remove unnecessary __methods__

This commit is contained in:
Ismail
2016-03-02 22:47:55 +00:00
parent e525cd3253
commit 4ac61ea543

View File

@@ -55,13 +55,7 @@ PI = ... # type: Callable[..., Element]
class QName:
text = ... # type: str
def __init__(self, text_or_uri: str, tag: str=...) -> None: ...
def __hash__(self) -> int: ...
def __le__(self, other: Union[str, QName]) -> bool: ...
def __lt__(self, other: Union[str, QName]) -> bool: ...
def __ge__(self, other: Union[str, QName]) -> bool: ...
def __gt__(self, other: Union[str, QName]) -> bool: ...
def __eq__(self, other: Union[str, QName]) -> bool: ...
def __ne__(self, other: Union[str, QName]) -> bool: ...
_file_or_filename = Union[str, bytes, int, IO[Any]]