├── .editorconfig ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── build_inc.yml │ ├── compat.yml │ ├── format.yml │ ├── pr.yml │ ├── release.yml │ ├── test.yml │ └── test_inc.yml ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── multi-subclass.patch ├── pyproject.toml ├── src └── lxml-stubs │ ├── ElementInclude.pyi │ ├── __init__.pyi │ ├── _types.pyi │ ├── builder.pyi │ ├── cssselect.pyi │ ├── etree │ ├── __init__.pyi │ ├── _classlookup.pyi │ ├── _cleanup.pyi │ ├── _docloader.pyi │ ├── _dtd.pyi │ ├── _element.pyi │ ├── _factory_func.pyi │ ├── _iterparse.pyi │ ├── _module_func.pyi │ ├── _module_misc.pyi │ ├── _nsclasses.pyi │ ├── _parser.pyi │ ├── _relaxng.pyi │ ├── _saxparser.pyi │ ├── _serializer.pyi │ ├── _xinclude.pyi │ ├── _xmlerror.pyi │ ├── _xmlid.pyi │ ├── _xmlschema.pyi │ ├── _xpath.pyi │ └── _xslt.pyi │ ├── html │ ├── __init__.pyi │ ├── _element.pyi │ ├── _form.pyi │ ├── _funcs.pyi │ ├── _parse.pyi │ ├── builder.pyi │ ├── clean.pyi │ ├── defs.pyi │ ├── diff.pyi │ ├── html5parser.pyi │ └── soupparser.pyi │ ├── isoschematron.pyi │ ├── objectify │ ├── __init__.pyi │ ├── _annotate.pyi │ ├── _element.pyi │ ├── _factory.pyi │ └── _misc.pyi │ ├── py.typed │ └── sax.pyi └── tests ├── runtime ├── __init__.py ├── _data │ ├── mdn-sample.html │ ├── sample.html.xz │ ├── shiporder.dtd │ ├── shiporder.rnc │ ├── shiporder.rng │ ├── shiporder.sch │ ├── shiporder.xml │ ├── shiporder.xsd │ └── w3c-example.svg ├── _testutils │ ├── __init__.py │ ├── common.py │ ├── decorator.py │ ├── errors.py │ └── strategy.py ├── allowlist.txt ├── conftest.py ├── elem │ ├── __init.py │ ├── test_attrib.py │ ├── test_basic.py │ ├── test_class_lookup.py │ ├── test_content_only_elem.py │ ├── test_elem_accessor.py │ ├── test_find_methods.py │ ├── test_iter_methods.py │ └── test_misc_methods.py ├── html_ │ ├── __init__.py │ ├── conftest.py │ ├── test_beautifulsoup.py │ ├── test_html5lib.py │ └── test_link_funcs.py ├── mypy.ini ├── register_strategy.py ├── test_constants.py ├── test_cssselect.py ├── test_dtd.py ├── test_errorlog.py ├── test_helper.py ├── test_iterparse.py ├── test_relaxng.py ├── test_schematron.py ├── test_xinclude.py ├── test_xmlid.py └── test_xmlschema.py └── static ├── conftest.py ├── mypy-pytest.ini ├── test-annotations.yml ├── test-builder.yml ├── test-classlookup.yml ├── test-etree-element.yml ├── test-etree-et.yml ├── test-etree.yml ├── test-html-element.yml ├── test-nsclasses.yml ├── test-oe-element.yml ├── test-oe.yml ├── test-resolver.yml ├── test-sax.yml ├── test-serializer.yml ├── test-xpath.yml └── test-xslt.yml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build_inc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/.github/workflows/build_inc.yml -------------------------------------------------------------------------------- /.github/workflows/compat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/.github/workflows/compat.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/test_inc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/.github/workflows/test_inc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/SECURITY.md -------------------------------------------------------------------------------- /multi-subclass.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/multi-subclass.patch -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/lxml-stubs/ElementInclude.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/ElementInclude.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lxml-stubs/_types.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/_types.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/builder.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/builder.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/cssselect.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/cssselect.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/etree/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/etree/__init__.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/etree/_classlookup.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/etree/_classlookup.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/etree/_cleanup.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/etree/_cleanup.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/etree/_docloader.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/etree/_docloader.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/etree/_dtd.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/etree/_dtd.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/etree/_element.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/etree/_element.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/etree/_factory_func.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/etree/_factory_func.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/etree/_iterparse.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/etree/_iterparse.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/etree/_module_func.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/etree/_module_func.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/etree/_module_misc.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/etree/_module_misc.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/etree/_nsclasses.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/etree/_nsclasses.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/etree/_parser.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/etree/_parser.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/etree/_relaxng.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/etree/_relaxng.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/etree/_saxparser.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/etree/_saxparser.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/etree/_serializer.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/etree/_serializer.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/etree/_xinclude.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/etree/_xinclude.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/etree/_xmlerror.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/etree/_xmlerror.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/etree/_xmlid.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/etree/_xmlid.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/etree/_xmlschema.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/etree/_xmlschema.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/etree/_xpath.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/etree/_xpath.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/etree/_xslt.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/etree/_xslt.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/html/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/html/__init__.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/html/_element.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/html/_element.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/html/_form.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/html/_form.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/html/_funcs.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/html/_funcs.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/html/_parse.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/html/_parse.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/html/builder.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/html/builder.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/html/clean.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/html/clean.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/html/defs.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/html/defs.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/html/diff.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/html/diff.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/html/html5parser.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/html/html5parser.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/html/soupparser.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/html/soupparser.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/isoschematron.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/isoschematron.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/objectify/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/objectify/__init__.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/objectify/_annotate.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/objectify/_annotate.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/objectify/_element.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/objectify/_element.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/objectify/_factory.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/objectify/_factory.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/objectify/_misc.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/objectify/_misc.pyi -------------------------------------------------------------------------------- /src/lxml-stubs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lxml-stubs/sax.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/src/lxml-stubs/sax.pyi -------------------------------------------------------------------------------- /tests/runtime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/runtime/_data/mdn-sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/_data/mdn-sample.html -------------------------------------------------------------------------------- /tests/runtime/_data/sample.html.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/_data/sample.html.xz -------------------------------------------------------------------------------- /tests/runtime/_data/shiporder.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/_data/shiporder.dtd -------------------------------------------------------------------------------- /tests/runtime/_data/shiporder.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/_data/shiporder.rnc -------------------------------------------------------------------------------- /tests/runtime/_data/shiporder.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/_data/shiporder.rng -------------------------------------------------------------------------------- /tests/runtime/_data/shiporder.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/_data/shiporder.sch -------------------------------------------------------------------------------- /tests/runtime/_data/shiporder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/_data/shiporder.xml -------------------------------------------------------------------------------- /tests/runtime/_data/shiporder.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/_data/shiporder.xsd -------------------------------------------------------------------------------- /tests/runtime/_data/w3c-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/_data/w3c-example.svg -------------------------------------------------------------------------------- /tests/runtime/_testutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/_testutils/__init__.py -------------------------------------------------------------------------------- /tests/runtime/_testutils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/_testutils/common.py -------------------------------------------------------------------------------- /tests/runtime/_testutils/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/_testutils/decorator.py -------------------------------------------------------------------------------- /tests/runtime/_testutils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/_testutils/errors.py -------------------------------------------------------------------------------- /tests/runtime/_testutils/strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/_testutils/strategy.py -------------------------------------------------------------------------------- /tests/runtime/allowlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/allowlist.txt -------------------------------------------------------------------------------- /tests/runtime/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/conftest.py -------------------------------------------------------------------------------- /tests/runtime/elem/__init.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/runtime/elem/test_attrib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/elem/test_attrib.py -------------------------------------------------------------------------------- /tests/runtime/elem/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/elem/test_basic.py -------------------------------------------------------------------------------- /tests/runtime/elem/test_class_lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/elem/test_class_lookup.py -------------------------------------------------------------------------------- /tests/runtime/elem/test_content_only_elem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/elem/test_content_only_elem.py -------------------------------------------------------------------------------- /tests/runtime/elem/test_elem_accessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/elem/test_elem_accessor.py -------------------------------------------------------------------------------- /tests/runtime/elem/test_find_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/elem/test_find_methods.py -------------------------------------------------------------------------------- /tests/runtime/elem/test_iter_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/elem/test_iter_methods.py -------------------------------------------------------------------------------- /tests/runtime/elem/test_misc_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/elem/test_misc_methods.py -------------------------------------------------------------------------------- /tests/runtime/html_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/runtime/html_/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/html_/conftest.py -------------------------------------------------------------------------------- /tests/runtime/html_/test_beautifulsoup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/html_/test_beautifulsoup.py -------------------------------------------------------------------------------- /tests/runtime/html_/test_html5lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/html_/test_html5lib.py -------------------------------------------------------------------------------- /tests/runtime/html_/test_link_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/html_/test_link_funcs.py -------------------------------------------------------------------------------- /tests/runtime/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/mypy.ini -------------------------------------------------------------------------------- /tests/runtime/register_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/register_strategy.py -------------------------------------------------------------------------------- /tests/runtime/test_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/test_constants.py -------------------------------------------------------------------------------- /tests/runtime/test_cssselect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/test_cssselect.py -------------------------------------------------------------------------------- /tests/runtime/test_dtd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/test_dtd.py -------------------------------------------------------------------------------- /tests/runtime/test_errorlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/test_errorlog.py -------------------------------------------------------------------------------- /tests/runtime/test_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/test_helper.py -------------------------------------------------------------------------------- /tests/runtime/test_iterparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/test_iterparse.py -------------------------------------------------------------------------------- /tests/runtime/test_relaxng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/test_relaxng.py -------------------------------------------------------------------------------- /tests/runtime/test_schematron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/test_schematron.py -------------------------------------------------------------------------------- /tests/runtime/test_xinclude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/test_xinclude.py -------------------------------------------------------------------------------- /tests/runtime/test_xmlid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/test_xmlid.py -------------------------------------------------------------------------------- /tests/runtime/test_xmlschema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/runtime/test_xmlschema.py -------------------------------------------------------------------------------- /tests/static/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/static/conftest.py -------------------------------------------------------------------------------- /tests/static/mypy-pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/static/mypy-pytest.ini -------------------------------------------------------------------------------- /tests/static/test-annotations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/static/test-annotations.yml -------------------------------------------------------------------------------- /tests/static/test-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/static/test-builder.yml -------------------------------------------------------------------------------- /tests/static/test-classlookup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/static/test-classlookup.yml -------------------------------------------------------------------------------- /tests/static/test-etree-element.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/static/test-etree-element.yml -------------------------------------------------------------------------------- /tests/static/test-etree-et.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/static/test-etree-et.yml -------------------------------------------------------------------------------- /tests/static/test-etree.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/static/test-etree.yml -------------------------------------------------------------------------------- /tests/static/test-html-element.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/static/test-html-element.yml -------------------------------------------------------------------------------- /tests/static/test-nsclasses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/static/test-nsclasses.yml -------------------------------------------------------------------------------- /tests/static/test-oe-element.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/static/test-oe-element.yml -------------------------------------------------------------------------------- /tests/static/test-oe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/static/test-oe.yml -------------------------------------------------------------------------------- /tests/static/test-resolver.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/static/test-resolver.yml -------------------------------------------------------------------------------- /tests/static/test-sax.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/static/test-sax.yml -------------------------------------------------------------------------------- /tests/static/test-serializer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/static/test-serializer.yml -------------------------------------------------------------------------------- /tests/static/test-xpath.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/static/test-xpath.yml -------------------------------------------------------------------------------- /tests/static/test-xslt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/types-lxml/HEAD/tests/static/test-xslt.yml --------------------------------------------------------------------------------