xml.dom.minicompat: complete stub (#5281)

This commit is contained in:
Shantanu
2021-05-01 21:39:54 -07:00
committed by GitHub
parent 0ea437f02a
commit 537aec0466

View File

@@ -1,3 +1,17 @@
from typing import Any
from typing import Any, Iterable, List, Optional, Tuple, Type, TypeVar
def __getattr__(name: str) -> Any: ... # incomplete
_T = TypeVar("_T")
StringTypes: Tuple[Type[str]]
class NodeList(List[_T]):
length: int
def item(self, index: int) -> Optional[_T]: ...
class EmptyNodeList(Tuple[Any, ...]):
length: int
def item(self, index: int) -> None: ...
def __add__(self, other: Iterable[_T]) -> NodeList[_T]: ... # type: ignore
def __radd__(self, other: Iterable[_T]) -> NodeList[_T]: ...
def defproperty(klass: Type[Any], name: str, doc: str) -> None: ...