mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
add ertree stub from Ben Longbons
This commit is contained in:
0
third_party/3/lxml/__init__.pyi
vendored
Normal file
0
third_party/3/lxml/__init__.pyi
vendored
Normal file
102
third_party/3/lxml/ertree.pyi
vendored
Normal file
102
third_party/3/lxml/ertree.pyi
vendored
Normal file
@@ -0,0 +1,102 @@
|
||||
# Hand-written stub for lxml.etree as used by mypy.report.
|
||||
# This is *far* from complete, and the stubgen-generated ones crash mypy.
|
||||
# Any use of `Any` below means I couldn't figure out the type.
|
||||
|
||||
import typing
|
||||
from typing import Any, Dict, List, Tuple, Union
|
||||
from typing import SupportsBytes
|
||||
|
||||
|
||||
# We do *not* want `typing.AnyStr` because it is a `TypeVar`, which is an
|
||||
# unnecessary constraint. It seems reasonable to constrain each
|
||||
# List/Dict argument to use one type consistently, though, and it is
|
||||
# necessary in order to keep these brief.
|
||||
AnyStr = Union[str, bytes]
|
||||
ListAnyStr = Union[List[str], List[bytes]]
|
||||
DictAnyStr = Union[Dict[str, str], Dict[bytes, bytes]]
|
||||
Dict_Tuple2AnyStr_Any = Union[Dict[Tuple[str, str], Any], Tuple[bytes, bytes], Any]
|
||||
|
||||
|
||||
class _Element:
|
||||
def addprevious(self, element: '_Element') -> None:
|
||||
pass
|
||||
|
||||
class _ElementTree:
|
||||
def write(self,
|
||||
file: Union[AnyStr, typing.IO],
|
||||
encoding: AnyStr = None,
|
||||
method: AnyStr = "xml",
|
||||
pretty_print: bool = False,
|
||||
xml_declaration: Any = None,
|
||||
with_tail: Any = True,
|
||||
standalone: bool = None,
|
||||
compression: int = 0,
|
||||
exclusive: bool = False,
|
||||
with_comments: bool = True,
|
||||
inclusive_ns_prefixes: ListAnyStr = None) -> None:
|
||||
pass
|
||||
|
||||
class _XSLTResultTree(SupportsBytes):
|
||||
pass
|
||||
|
||||
class _XSLTQuotedStringParam:
|
||||
pass
|
||||
|
||||
class XMLParser:
|
||||
pass
|
||||
|
||||
class XMLSchema:
|
||||
def __init__(self,
|
||||
etree: Union[_Element, _ElementTree] = None,
|
||||
file: Union[AnyStr, typing.IO] = None) -> None:
|
||||
pass
|
||||
|
||||
def assertValid(self,
|
||||
etree: Union[_Element, _ElementTree]) -> None:
|
||||
pass
|
||||
|
||||
class XSLTAccessControl:
|
||||
pass
|
||||
|
||||
class XSLT:
|
||||
def __init__(self,
|
||||
xslt_input: Union[_Element, _ElementTree],
|
||||
extensions: Dict_Tuple2AnyStr_Any = None,
|
||||
regexp: bool = True,
|
||||
access_control: XSLTAccessControl = None) -> None:
|
||||
pass
|
||||
|
||||
def __call__(self,
|
||||
_input: Union[_Element, _ElementTree],
|
||||
profile_run: bool = False,
|
||||
**kwargs: Union[AnyStr, _XSLTQuotedStringParam]) -> _XSLTResultTree:
|
||||
pass
|
||||
|
||||
@staticmethod
|
||||
def strparam(s: AnyStr) -> _XSLTQuotedStringParam:
|
||||
pass
|
||||
|
||||
def Element(_tag: AnyStr,
|
||||
attrib: DictAnyStr = None,
|
||||
nsmap: DictAnyStr = None,
|
||||
**extra: AnyStr) -> _Element:
|
||||
pass
|
||||
|
||||
def SubElement(_parent: _Element, _tag: AnyStr,
|
||||
attrib: DictAnyStr = None,
|
||||
nsmap: DictAnyStr = None,
|
||||
**extra: AnyStr) -> _Element:
|
||||
pass
|
||||
|
||||
def ElementTree(element: _Element = None,
|
||||
file: Union[AnyStr, typing.IO] = None,
|
||||
parser: XMLParser = None) -> _ElementTree:
|
||||
pass
|
||||
|
||||
def ProcessingInstruction(target: AnyStr, text: AnyStr = None) -> _Element:
|
||||
pass
|
||||
|
||||
def parse(source: Union[AnyStr, typing.IO],
|
||||
parser: XMLParser = None,
|
||||
base_url: AnyStr = None) -> _ElementTree:
|
||||
pass
|
||||
Reference in New Issue
Block a user