python3-lxml-doc-4.0.0-150000.4.3.1<>,sc?p9|QqcE+aۄCCE:ZBeujy*Sgқ]@Mm&sSXc* `;)9qx@ >gy)D 0߭(_Gy#S!0vB#КW9Hv{%Vc>e]@?ȳ#`0_zȝ =P62;a?ad & _ /@FP       p ?([8d9:FjGH@IXY\] ^VbW0cWdXWeX\fX_lXauXtv`4zaAaTaXa^aCpython3-lxml-doc4.0.0150000.4.3.1Documentation for python-lxml, an XML processing librarylxml is a Pythonic binding for the libxml2 and libxslt libraries. It provides convenient access to these libraries using the ElementTree API. It extends the ElementTree API significantly to offer support for XPath, RelaxNG, XML Schema, XSLT and C14N. This package contains documentation for lxml (HTML and PDF).c?sheep56}b/SUSE Linux Enterprise 15SUSE LLC BSD-3-Clause and GPL-2.0+https://www.suse.com/Development/Languages/Pythonhttps://lxml.de/linuxnoarchY=J 2 m9 9H>'A+EB2g݈W1aPMw5T+32#pNtpb)&*(E@AAl)36&0P'4%28Vz *lX7C$-%E"p<*=M&*& &470%:N/1D$ "/+w0)O=T$O?(-:5-L&+&f&W>4%U%L@.Cd:&V]7&;&[C7&z&Z&s&/$j7)o%^C4<2&o&L&f(Q7d7:&=''&)TqA&&@&3&%^d08!u4B~()S0!.:@8BO3C4R!(.2.E7:,.Q59 5Pf)+'vcQ(62J6A"6 7OjB)?jW5L(@+8'dMQ@-( 0>=`.1]T)SFCHo6JTTT ]>I>*@svO%Ei,d,_QS&&%+8oF(![4]g$ksfC-+N@aN%we\6!W${>- 4=i*R+N$_C.$nQ?*mK]99D3?!XoC1%Y$J,3jBWVFrbh'qhSk%' kG~D<x1$It$:Vj2/2qncj,&4T@=$lo#$DA&#S,,+****: [;1QQh%hN0tk`89HAG, QWcAS7<3\6R1X Js &D$$ ! L [C 4}  ?@  {t0ZjOsE00!LK)Q' Zo>qK`)-VDykiM;y!5 m@#uKD A@c47@YeY@YzY{'@X@X@XWW@W-@VHUU@U7@U7@TXsteven.kowalik@suse.comsteven.kowalik@suse.comjmatejek@suse.comthomas.schraitle@suse.comjengelh@inai.deecsos@opensuse.orgjmatejek@suse.comaxel.braun@gmx.dejmatejek@suse.comtbechtold@suse.comtbechtold@suse.comtoddrme2178@gmail.commcihar@suse.czaloisio@gmx.commcihar@suse.czmcihar@suse.czmlin@suse.com- Add patch CVE-2021-28957-prevent-formaction.patch: * Sanitize HTML5 formaction attributes to prevent an XSS (bsc#1184177, CVE-2021-28957)- Add patch fix-test-failures.patch: * Fix the test failures so the suite passes. - Add patch CVE-2020-27783-prevent-noscript.patch: * Clean noscript tags to prevent an mXSS (bsc#1179534, CVE-2020-27783)- run tests only when the appropriate pythons are available- spec changes: - add fdupes - update to 4.0.0: Features added: - The ElementPath implementation is now compiled using Cython, which speeds up the .find*() methods quite significantly. - The modules lxml.builder, lxml.html.diff and lxml.html.clean are also compiled using Cython in order to speed them up. - xmlfile() supports async coroutines using async with and await. - iterwalk() has a new method skip_subtree() that prevents walking into the descendants of the current element. - RelaxNG.from_rnc_string() accepts a base_url argument to allow relative resource lookups. - The XSLT result object has a new method .write_output(file) that serialises output data into a file according to the configuration. Bugs fixed: - GH#251: HTML comments were handled incorrectly by the soupparser. Patch by mozbugbox. - LP#1654544: The html5parser no longer passes the useChardet option if the input is a Unicode string, unless explicitly requested. When parsing files, the default is to enable it when a URL or file path is passed (because the file is then opened in binary mode), and to disable it when reading from a file(-like) object. Note: This is a backwards incompatible change of the default configuration. If your code parses byte strings/streams and depends on character detection, please pass the option guess_charset=True explicitly, which already worked in older lxml versions. - LP#1703810: etree.fromstring() failed to parse UTF-32 data with BOM. - LP#1526522: Some RelaxNG errors were not reported in the error log. - LP#1567526: Empty and plain text input raised a TypeError in soupparser. - LP#1710429: Uninitialised variable usage in HTML diff. - LP#1415643: The closing tags context manager in xmlfile() could continue to output end tags even after writing failed with an exception. - LP#1465357: xmlfile.write() now accepts and ignores None as input argument. - Compilation under Py3.7-pre failed due to a modified function signature. Other changes: - The main module source files were renamed from lxml.*.pyx to plain *.pyx (e.g. etree.pyx) to simplify their handling in the build process. Care was taken to keep the old header files as fallbacks for code that compiles against the public C-API of lxml, but it might still be worth validating that third-party code does not notice this change.- Ensure neutrality of description. Adjust RPM categories.- update to 3.8.0 Features added - ElementTree.write() has a new option doctype that writes out a doctype string before the serialisation, in the same way as tostring(). - GH#220: xmlfile allows switching output methods at an element level. Patch by Burak Arslan. - LP#1595781, GH#240: added a PyCapsule Python API and C-level API for passing externally generated libxml2 documents into lxml. - GH#244: error log entries have a new property path with an XPath expression (if known, None otherwise) that points to the tree element responsible for the error. Patch by Bob Kline. - The namespace prefix mapping that can be used in ElementPath now injects a default namespace when passing a None prefix. Bugs fixed - GH#238: Character escapes were not hex-encoded in the xmlfile serialiser. Patch by matejcik. - GH#229: fix for externally created XML documents. Patch by Theodore Dubois. - LP#1665241, GH#228: Form data handling in lxml.html no longer strips the option values specified in form attributes but only the text values. Patch by Ashish Kulkarni. - LP#1551797: revert previous fix for XSLT error logging as it breaks multi-threaded XSLT processing. - LP#1673355, GH#233: fromstring() html5parser failed to parse byte strings. Other changes - The previously undocumented docstring option in ElementTree.write() produces a deprecation warning and will eventually be removed. - enable source url for pdf doc - remove patch lxml-fix-attribute-quoting.patch because it is now in upstream- temporarily disable Source URL for pdf doc (it became unavailable) - lxml-fix-attribute-quoting.patch - stabilize attribute entity encoding across platforms - force-regenerate C code from Cython sources- Version 3.7.3 * GH#218 was ineffective in Python 3. * GH#222: lxml.html.submit_form() failed in Python 3. Patch by Jakub Wilk. * Work around installation problems in recent Python 2.7 versions due to FTP download failures. * GH#219: ``xmlfile.element()`` was not properly quoting attribute values. Patch by Burak Arslan. * GH#218: ``xmlfile.element()`` was not properly escaping text content of script/style tags. Patch by Burak Arslan. * GH#217: ``XMLSyntaxError`` now behaves more like its ``SyntaxError`` baseclass. Patch by Philipp A. * GH#216: ``HTMLParser()`` now supports the same ``collect_ids`` parameter as ``XMLParser()``. Patch by Burak Arslan. * GH#210: Allow specifying a serialisation method in ``xmlfile.write()``. Patch by Burak Arslan. * GH#203: New option ``default_doctype`` in ``HTMLParser`` that allows disabling the automatic doctype creation. Patch by Shadab Zafar. * GH#201: Calling the method ``.set('attrname')`` without value argument (or ``None``) on HTML elements creates an attribute without value that serialises like ``
``. Patch by Daniel Holth. * GH#197: Ignore form input fields in ``form_values()`` when they are marked as ``disabled`` in HTML. Patch by Kristian Klemon. * GH#206: File name and line number were missing from XSLT error messages. Patch by Marcus Brinkmann. * Log entries no longer allow anything but plain string objects as message text and file name. * ``zlib`` is included in the list of statically built libraries. * GH#204, LP#1614693: build fix for MacOS-X. * LP#1614603: change linker flags to build multi-linux wheels * LP#1614603: release without source changes to provide cleanly built Linux wheels- update for multipython build- update to 3.6.1 (FATE #321014): * Separate option ``inline_style`` for Cleaner that only removes ``style`` attributes instead of all styles. * Windows build support for Python 3.5. * Exclude ``file`` fields from ``FormElement.form_values`` (as browsers do). * Try to provide base URL from ``Resolver.resolve_string()``. * More accurate float serialisation in ``objectify.FloatElement``. * Repair XSLT error logging.- update to 3.6.0: * Static builds honour FTP proxy configurations when downloading the external libs. * Now supports (only) version 5.x and later of PyPy. * Soupparser failed to process entities in Python 3.x. * Rare encoding related `TypeError` on import was fixed. * Direct support for `.rnc` files in `RelaxNG()` if `rnc2rng` is installed.- update to version 3.5.0: * Unicode string results failed XPath queries in PyPy. * LP#1497051: HTML target parser failed to terminate on exceptions and continued parsing instead. * Deprecated API usage in doctestcompare. - changes from version 3.5.0b1: * cleanup_namespaces() accepts a new argument keep_ns_prefixes that does not remove definitions of the provided prefix-namespace mapping from the tree. * cleanup_namespaces() accepts a new argument top_nsmap that moves definitions of the provided prefix-namespace mapping to the top of the tree. * LP#1490451: Element objects gained a cssselect() method as known from lxml.html. Patch by Simon Sapin. * API functions and methods behave and look more like Python functions, which allows introspection on them etc. One side effect to be aware of is that the functions now bind as methods when assigned to a class variable. A quick fix is to wrap them in staticmethod() (as for normal Python functions). * ISO-Schematron support gained an option error_finder that allows passing a filter function for picking validation errors from reports. * LP#1243600: Elements in lxml.html gained a classes property that provides a set-like interface to the class attribute. Original patch by masklinn. * LP#1341964: The soupparser now handles DOCTYPE declarations, comments and processing instructions outside of the root element. Patch by Olli Pottonen. * LP#1421512: The docinfo of a tree was made editable to allow setting and removing the public ID and system ID of the DOCTYPE. Patch by Olli Pottonen. * LP#1442427: More work-arounds for quirks and bugs in pypy and pypy3. * lxml.html.soupparser now uses BeautifulSoup version 4 instead of version 3 if available. * Memory errors that occur during tree adaptations (e.g. moving subtrees to foreign documents) could leave the tree in a crash prone state. * Calling process_children() in an XSLT extension element without an output_parent argument failed with a TypeError. Fix by Jens Tröger. * GH#162: Image data in HTML data URLs is considered safe and no longer removed by lxml.html.clean JavaScript cleaner. * GH#166: Static build could link libraries in wrong order. * GH#172: Rely a bit more on libxml2 for encoding detection rather than rolling our own in some cases. Patch by Olli Pottonen. * GH#159: Validity checks for names and string content were tightened to detect the use of illegal characters early. Patch by Olli Pottonen. * LP#1421921: Comments/PIs before the DOCTYPE declaration were not serialised. Patch by Olli Pottonen. * LP#659367: Some HTML DOCTYPE declarations were not serialised. Patch by Olli Pottonen. * LP#1238503: lxml.doctestcompare is now consistent with stdlib's doctest in how it uses + and - to refer to unexpected and missing output. * Empty prefixes are explicitly rejected when a namespace mapping is used with ElementPath to avoid hiding bugs in user code. * Several problems with PyPy were fixed by switching to Cython 0.23.- Add devel package with header files in devel package, so that others can use C API (needed for dm.xmlsec.binding)- Update to version 3.4.4 Bugs fixed: * An ElementTree compatibility test added in lxml 3.4.3 that failed in Python 3.4+ was removed again. - Aligned dependency versions with PyPI ones- Drop lxml-dont-depend-on-URL-formatting-in-test.patch, merged upstream- Update to 3.4.3: * Expression cache in ElementPath was ignored. Fix by Changaco. * LP#1426868: Passing a default namespace and a prefixed namespace mapping as nsmap into ``xmlfile.element()`` raised a ``TypeError``. * LP#1421927: DOCTYPE system URLs were incorrectly quoted when containing double quotes. Patch by Olli Pottonen. * LP#1419354: meta-redirect URLs were incorrectly processed by ``iterlinks()`` if preceded by whitespace. * LP#1415907: Crash when creating an XMLSchema from a non-root element of an XML document. * LP#1369362: HTML cleaning failed when hitting processing instructions with pseudo-attributes. * ``CDATA()`` wrapped content was rejected for tail text. * CDATA sections were not serialised as tail text of the top-level element. * New ``htmlfile`` HTML generator to accompany the incremental ``xmlfile`` serialisation API. Patch by Burak Arslan. * ``lxml.sax.ElementTreeContentHandler`` did not initialise its superclass.- Update to 3.4.0 * Features added * * xmlfile(buffered=False) disables output buffering and flushes the content after each API operation (starting/ending element blocks or writes). A new method xf.flush() can alternatively be used to explicitly flush the output. * * lxml.html.document_fromstring has a new option ensure_head_body=True which will add an empty head and/or body element to the result document if missing. * * lxml.html.iterlinks now returns links inside meta refresh tags. * * New XMLParser option collect_ids=False to disable ID hash table creation. This can substantially speed up parsing of documents with many different IDs that are not used. * * The parser uses per-document hash tables for XML IDs. This reduces the load of the global parser dict and speeds up parsing for documents with many different IDs. * * ElementTree.getelementpath(element) returns a structural ElementPath expression for the given element, which can be used for lookups later. * * xmlfile() accepts a new argument close=True to close file(-like) objects after writing to them. Before, xmlfile() only closed the file if it had opened it internally. * * Allow "bytearray" type for ASCII text input. * Other changes * * LP#400588: decoding errors have become hard errors even in recovery mode. Previously, they could lead to an internal tree representation in a mixed encoding state, which lead to very late errors or even silently incorrect behaviour during tree traversal or serialisation. * * Requires Python 2.6, 2.7, 3.2 or later. No longer supports Python 2.4, 2.5 and 3.1, use lxml 3.3.x for those. * * Requires libxml2 2.7.0 or later and libxslt 1.1.23 or later, use lxml 3.3.x with older versions. - Add updatream patch lxml-dont-depend-on-URL-formatting-in-test.patch * fix test - Changes in 3.3.6 * Bugs fixed * * Prevent tree cycle creation when adding Elements as siblings. * * LP#1361948: crash when deallocating Element siblings without parent. * * LP#1354652: crash when traversing internally loaded documents in XSLT extension functions.sheep56 1665131185  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~4.0.0-150000.4.3.1python3-lxml-dochtmlFAQ.htmlapiapi.htmlabc.ABCMeta-class.htmlapi-objects.txtclass-tree.htmlcssselect.parser.SelectorError-class.htmlcssselect.parser.SelectorSyntaxError-class.htmlcssselect.xpath.ExpressionError-class.htmlcssselect.xpath.XPathExpr-class.htmldeprecated-index.htmlepydoc.cssexceptions.AssertionError-class.htmlframes.htmlhelp.htmlidentifier-index-A.htmlidentifier-index-B.htmlidentifier-index-C.htmlidentifier-index-D.htmlidentifier-index-E.htmlidentifier-index-F.htmlidentifier-index-G.htmlidentifier-index-H.htmlidentifier-index-I.htmlidentifier-index-J.htmlidentifier-index-K.htmlidentifier-index-L.htmlidentifier-index-M.htmlidentifier-index-N.htmlidentifier-index-O.htmlidentifier-index-P.htmlidentifier-index-Q.htmlidentifier-index-R.htmlidentifier-index-S.htmlidentifier-index-T.htmlidentifier-index-U.htmlidentifier-index-V.htmlidentifier-index-W.htmlidentifier-index-X.htmlidentifier-index-Y.htmlidentifier-index-Z.htmlidentifier-index-_.htmlidentifier-index.htmlindex.htmllxml-module.htmllxml-pysrc.htmllxml.ElementInclude-module.htmllxml.ElementInclude-pysrc.htmllxml.ElementInclude.FatalIncludeError-class.htmllxml.builder-module.htmllxml.builder-pysrc.htmllxml.builder.ElementMaker-class.htmllxml.cssselect-module.htmllxml.cssselect-pysrc.htmllxml.cssselect.CSSSelector-class.htmllxml.cssselect.LxmlHTMLTranslator-class.htmllxml.cssselect.LxmlTranslator-class.htmllxml.doctestcompare-module.htmllxml.doctestcompare-pysrc.htmllxml.doctestcompare.LHTMLOutputChecker-class.htmllxml.doctestcompare.LXMLOutputChecker-class.htmllxml.doctestcompare._RestoreChecker-class.htmllxml.etree-module.htmllxml.etree.AncestorsIterator-class.htmllxml.etree.AttributeBasedElementClassLookup-class.htmllxml.etree.C14NError-class.htmllxml.etree.CDATA-class.htmllxml.etree.CommentBase-class.htmllxml.etree.CustomElementClassLookup-class.htmllxml.etree.DTD-class.htmllxml.etree.DTDError-class.htmllxml.etree.DTDParseError-class.htmllxml.etree.DTDValidateError-class.htmllxml.etree.DocInfo-class.htmllxml.etree.DocumentInvalid-class.htmllxml.etree.ETCompatXMLParser-class.htmllxml.etree.ETXPath-class.htmllxml.etree.ElementBase-class.htmllxml.etree.ElementChildIterator-class.htmllxml.etree.ElementClassLookup-class.htmllxml.etree.ElementDefaultClassLookup-class.htmllxml.etree.ElementDepthFirstIterator-class.htmllxml.etree.ElementNamespaceClassLookup-class.htmllxml.etree.ElementTextIterator-class.htmllxml.etree.EntityBase-class.htmllxml.etree.Error-class.htmllxml.etree.ErrorDomains-class.htmllxml.etree.ErrorLevels-class.htmllxml.etree.ErrorTypes-class.htmllxml.etree.FallbackElementClassLookup-class.htmllxml.etree.HTMLParser-class.htmllxml.etree.HTMLPullParser-class.htmllxml.etree.LxmlError-class.htmllxml.etree.LxmlRegistryError-class.htmllxml.etree.LxmlSyntaxError-class.htmllxml.etree.NamespaceRegistryError-class.htmllxml.etree.PIBase-class.htmllxml.etree.ParseError-class.htmllxml.etree.ParserBasedElementClassLookup-class.htmllxml.etree.ParserError-class.htmllxml.etree.PyErrorLog-class.htmllxml.etree.PythonElementClassLookup-class.htmllxml.etree.QName-class.htmllxml.etree.RelaxNG-class.htmllxml.etree.RelaxNGError-class.htmllxml.etree.RelaxNGErrorTypes-class.htmllxml.etree.RelaxNGParseError-class.htmllxml.etree.RelaxNGValidateError-class.htmllxml.etree.Resolver-class.htmllxml.etree.Schematron-class.htmllxml.etree.SchematronError-class.htmllxml.etree.SchematronParseError-class.htmllxml.etree.SchematronValidateError-class.htmllxml.etree.SerialisationError-class.htmllxml.etree.SiblingsIterator-class.htmllxml.etree.TreeBuilder-class.htmllxml.etree.XInclude-class.htmllxml.etree.XIncludeError-class.htmllxml.etree.XMLParser-class.htmllxml.etree.XMLPullParser-class.htmllxml.etree.XMLSchema-class.htmllxml.etree.XMLSchemaError-class.htmllxml.etree.XMLSchemaParseError-class.htmllxml.etree.XMLSchemaValidateError-class.htmllxml.etree.XMLSyntaxError-class.htmllxml.etree.XPath-class.htmllxml.etree.XPathDocumentEvaluator-class.htmllxml.etree.XPathElementEvaluator-class.htmllxml.etree.XPathError-class.htmllxml.etree.XPathEvalError-class.htmllxml.etree.XPathFunctionError-class.htmllxml.etree.XPathResultError-class.htmllxml.etree.XPathSyntaxError-class.htmllxml.etree.XSLT-class.htmllxml.etree.XSLTAccessControl-class.htmllxml.etree.XSLTApplyError-class.htmllxml.etree.XSLTError-class.htmllxml.etree.XSLTExtension-class.htmllxml.etree.XSLTExtensionError-class.htmllxml.etree.XSLTParseError-class.htmllxml.etree.XSLTSaveError-class.htmllxml.etree._Attrib-class.htmllxml.etree._BaseErrorLog-class.htmllxml.etree._Comment-class.htmllxml.etree._Document-class.htmllxml.etree._DomainErrorLog-class.htmllxml.etree._Element-class.htmllxml.etree._ElementIterator-class.htmllxml.etree._ElementMatchIterator-class.htmllxml.etree._ElementStringResult-class.htmllxml.etree._ElementTagMatcher-class.htmllxml.etree._ElementTree-class.htmllxml.etree._ElementUnicodeResult-class.htmllxml.etree._Entity-class.htmllxml.etree._ErrorLog-class.htmllxml.etree._FeedParser-class.htmllxml.etree._IDDict-class.htmllxml.etree._ListErrorLog-class.htmllxml.etree._LogEntry-class.htmllxml.etree._ProcessingInstruction-class.htmllxml.etree._RotatingErrorLog-class.htmllxml.etree._SaxParserTarget-class.htmllxml.etree._TargetParserResult-class.htmllxml.etree._Validator-class.htmllxml.etree._XPathEvaluatorBase-class.htmllxml.etree._XSLTProcessingInstruction-class.htmllxml.etree._XSLTResultTree-class.htmllxml.etree.htmlfile-class.htmllxml.etree.iterparse-class.htmllxml.etree.iterwalk-class.htmllxml.etree.xmlfile-class.htmllxml.html-module.htmllxml.html-pysrc.htmllxml.html.CheckboxGroup-class.htmllxml.html.CheckboxValues-class.htmllxml.html.Classes-class.htmllxml.html.ElementSoup-module.htmllxml.html.ElementSoup-pysrc.htmllxml.html.FieldsDict-class.htmllxml.html.FormElement-class.htmllxml.html.HTMLParser-class.htmllxml.html.HtmlComment-class.htmllxml.html.HtmlElement-class.htmllxml.html.HtmlElementClassLookup-class.htmllxml.html.HtmlEntity-class.htmllxml.html.HtmlMixin-class.htmllxml.html.HtmlProcessingInstruction-class.htmllxml.html.InputElement-class.htmllxml.html.InputGetter-class.htmllxml.html.InputMixin-class.htmllxml.html.LabelElement-class.htmllxml.html.MultipleSelectOptions-class.htmllxml.html.RadioGroup-class.htmllxml.html.SelectElement-class.htmllxml.html.TextareaElement-class.htmllxml.html.XHTMLParser-class.htmllxml.html._MethodFunc-class.htmllxml.html.builder-module.htmllxml.html.builder-pysrc.htmllxml.html.clean-module.htmllxml.html.clean-pysrc.htmllxml.html.clean.Cleaner-class.htmllxml.html.defs-module.htmllxml.html.defs-pysrc.htmllxml.html.diff-module.htmllxml.html.diff-pysrc.htmllxml.html.diff.DEL_END-class.htmllxml.html.diff.DEL_START-class.htmllxml.html.diff.InsensitiveSequenceMatcher-class.htmllxml.html.diff.NoDeletes-class.htmllxml.html.diff.href_token-class.htmllxml.html.diff.tag_token-class.htmllxml.html.diff.token-class.htmllxml.html.formfill-module.htmllxml.html.formfill-pysrc.htmllxml.html.formfill.DefaultErrorCreator-class.htmllxml.html.formfill.FormNotFound-class.htmllxml.html.html5parser-module.htmllxml.html.html5parser-pysrc.htmllxml.html.html5parser.HTMLParser-class.htmllxml.html.html5parser.XHTMLParser-class.htmllxml.html.soupparser-module.htmllxml.html.soupparser-pysrc.htmllxml.html.soupparser._PseudoTag-class.htmllxml.html.usedoctest-module.htmllxml.html.usedoctest-pysrc.htmllxml.includes-module.htmllxml.includes-pysrc.htmllxml.isoschematron-module.htmllxml.isoschematron-pysrc.htmllxml.isoschematron.Schematron-class.htmllxml.objectify-module.htmllxml.objectify.BoolElement-class.htmllxml.objectify.ElementMaker-class.htmllxml.objectify.FloatElement-class.htmllxml.objectify.IntElement-class.htmllxml.objectify.LongElement-class.htmllxml.objectify.NoneElement-class.htmllxml.objectify.NumberElement-class.htmllxml.objectify.ObjectPath-class.htmllxml.objectify.ObjectifiedDataElement-class.htmllxml.objectify.ObjectifiedElement-class.htmllxml.objectify.ObjectifyElementClassLookup-class.htmllxml.objectify.PyType-class.htmllxml.objectify.StringElement-class.htmllxml.pyclasslookup-module.htmllxml.pyclasslookup-pysrc.htmllxml.sax-module.htmllxml.sax-pysrc.htmllxml.sax.ElementTreeContentHandler-class.htmllxml.sax.ElementTreeProducer-class.htmllxml.sax.SaxError-class.htmllxml.tests-module.htmllxml.tests-pysrc.htmllxml.tests.common_imports-module.htmllxml.tests.common_imports-pysrc.htmllxml.tests.common_imports.HelperTestCase-class.htmllxml.tests.common_imports.LargeFileLike-class.htmllxml.tests.common_imports.LargeFileLikeUnicode-class.htmllxml.tests.common_imports.SillyFileLike-class.htmllxml.tests.common_imports.skipif-class.htmllxml.tests.dummy_http_server-module.htmllxml.tests.dummy_http_server-pysrc.htmllxml.tests.dummy_http_server.HTTPRequestCollector-class.htmllxml.tests.dummy_http_server.WebServer-class.htmllxml.tests.dummy_http_server._RequestHandler-class.htmllxml.tests.selftest-module.htmllxml.tests.selftest-pysrc.htmllxml.tests.selftest2-module.htmllxml.tests.selftest2-pysrc.htmllxml.tests.test_builder-module.htmllxml.tests.test_builder-pysrc.htmllxml.tests.test_builder.BuilderTestCase-class.htmllxml.tests.test_classlookup-module.htmllxml.tests.test_classlookup-pysrc.htmllxml.tests.test_classlookup.ClassLookupTestCase-class.htmllxml.tests.test_classlookup.ProxyTestCase-class.htmllxml.tests.test_css-module.htmllxml.tests.test_css-pysrc.htmllxml.tests.test_css.CSSTestCase-class.htmllxml.tests.test_doctestcompare-module.htmllxml.tests.test_doctestcompare-pysrc.htmllxml.tests.test_doctestcompare.DoctestCompareTest-class.htmllxml.tests.test_doctestcompare.DummyInput-class.htmllxml.tests.test_dtd-module.htmllxml.tests.test_dtd-pysrc.htmllxml.tests.test_dtd.ETreeDtdTestCase-class.htmllxml.tests.test_elementpath-module.htmllxml.tests.test_elementpath-pysrc.htmllxml.tests.test_elementpath.EtreeElementPathTestCase-class.htmllxml.tests.test_elementtree-module.htmllxml.tests.test_elementtree-pysrc.htmllxml.tests.test_elementtree.CElementTreeTestCase-class.htmllxml.tests.test_elementtree.ETreePullTestCase-class.htmllxml.tests.test_elementtree.ETreeTestCase-class.htmllxml.tests.test_elementtree.ElementTreeTestCase-class.htmllxml.tests.test_elementtree._ETreeTestCaseBase-class.htmllxml.tests.test_elementtree._XMLPullParserTest-class.htmllxml.tests.test_errors-module.htmllxml.tests.test_errors-pysrc.htmllxml.tests.test_errors.ErrorTestCase-class.htmllxml.tests.test_etree-module.htmllxml.tests.test_etree-pysrc.htmllxml.tests.test_etree.ETreeC14NTestCase-class.htmllxml.tests.test_etree.ETreeErrorLogTest-class.htmllxml.tests.test_etree.ETreeOnlyTestCase-class.htmllxml.tests.test_etree.ETreeWriteTestCase-class.htmllxml.tests.test_etree.ETreeXIncludeTestCase-class.htmllxml.tests.test_etree.ElementIncludeTestCase-class.htmllxml.tests.test_etree.XMLPullParserTest-class.htmllxml.tests.test_etree._XIncludeTestCase-class.htmllxml.tests.test_external_document-module.htmllxml.tests.test_external_document-pysrc.htmllxml.tests.test_external_document.ExternalDocumentTestCase-class.htmllxml.tests.test_htmlparser-module.htmllxml.tests.test_htmlparser-pysrc.htmllxml.tests.test_htmlparser.HtmlParserTestCase-class.htmllxml.tests.test_http_io-module.htmllxml.tests.test_http_io-pysrc.htmllxml.tests.test_http_io.HttpIOTestCase-class.htmllxml.tests.test_incremental_xmlfile-module.htmllxml.tests.test_incremental_xmlfile-pysrc.htmllxml.tests.test_incremental_xmlfile.AsyncXmlFileTestCase-class.htmllxml.tests.test_incremental_xmlfile.BytesIOXmlFileTestCase-class.htmllxml.tests.test_incremental_xmlfile.HtmlFileTestCase-class.htmllxml.tests.test_incremental_xmlfile.SimpleFileLikeXmlFileTestCase-class.htmllxml.tests.test_incremental_xmlfile.SimpleFileLikeXmlFileTestCase.SimpleFileLike-class.htmllxml.tests.test_incremental_xmlfile.TempPathXmlFileTestCase-class.htmllxml.tests.test_incremental_xmlfile.TempXmlFileTestCase-class.htmllxml.tests.test_incremental_xmlfile._XmlFileTestCaseBase-class.htmllxml.tests.test_io-module.htmllxml.tests.test_io-pysrc.htmllxml.tests.test_io.ETreeIOTestCase-class.htmllxml.tests.test_io.ElementTreeIOTestCase-class.htmllxml.tests.test_io._IOTestCaseBase-class.htmllxml.tests.test_isoschematron-module.htmllxml.tests.test_isoschematron-pysrc.htmllxml.tests.test_isoschematron.ETreeISOSchematronTestCase-class.htmllxml.tests.test_nsclasses-module.htmllxml.tests.test_nsclasses-pysrc.htmllxml.tests.test_nsclasses.ETreeNamespaceClassesTestCase-class.htmllxml.tests.test_nsclasses.ETreeNamespaceClassesTestCase.bluff_class-class.htmllxml.tests.test_nsclasses.ETreeNamespaceClassesTestCase.default_class-class.htmllxml.tests.test_nsclasses.ETreeNamespaceClassesTestCase.maeh_class-class.htmllxml.tests.test_objectify-module.htmllxml.tests.test_objectify-pysrc.htmllxml.tests.test_objectify.ObjectifyTestCase-class.htmllxml.tests.test_pyclasslookup-module.htmllxml.tests.test_pyclasslookup-pysrc.htmllxml.tests.test_pyclasslookup.PyClassLookupTestCase-class.htmllxml.tests.test_relaxng-module.htmllxml.tests.test_relaxng-pysrc.htmllxml.tests.test_relaxng.ETreeRelaxNGTestCase-class.htmllxml.tests.test_relaxng.RelaxNGCompactTestCase-class.htmllxml.tests.test_sax-module.htmllxml.tests.test_sax-pysrc.htmllxml.tests.test_sax.ETreeSaxTestCase-class.htmllxml.tests.test_schematron-module.htmllxml.tests.test_schematron-pysrc.htmllxml.tests.test_schematron.ETreeSchematronTestCase-class.htmllxml.tests.test_threading-module.htmllxml.tests.test_threading-pysrc.htmllxml.tests.test_threading.ThreadPipelineTestCase-class.htmllxml.tests.test_threading.ThreadPipelineTestCase.ParseAndExtendWorker-class.htmllxml.tests.test_threading.ThreadPipelineTestCase.ParseAndInjectWorker-class.htmllxml.tests.test_threading.ThreadPipelineTestCase.ParseWorker-class.htmllxml.tests.test_threading.ThreadPipelineTestCase.ReverseWorker-class.htmllxml.tests.test_threading.ThreadPipelineTestCase.RotateWorker-class.htmllxml.tests.test_threading.ThreadPipelineTestCase.SerialiseWorker-class.htmllxml.tests.test_threading.ThreadPipelineTestCase.Validate-class.htmllxml.tests.test_threading.ThreadPipelineTestCase.Worker-class.htmllxml.tests.test_threading.ThreadingTestCase-class.htmllxml.tests.test_unicode-module.htmllxml.tests.test_unicode-pysrc.htmllxml.tests.test_unicode.EncodingsTestCase-class.htmllxml.tests.test_unicode.UnicodeTestCase-class.htmllxml.tests.test_xmlschema-module.htmllxml.tests.test_xmlschema-pysrc.htmllxml.tests.test_xmlschema.ETreeXMLSchemaResolversTestCase-class.htmllxml.tests.test_xmlschema.ETreeXMLSchemaResolversTestCase.simple_resolver-class.htmllxml.tests.test_xmlschema.ETreeXMLSchemaTestCase-class.htmllxml.tests.test_xpathevaluator-module.htmllxml.tests.test_xpathevaluator-pysrc.htmllxml.tests.test_xpathevaluator.ETreeETXPathClassTestCase-class.htmllxml.tests.test_xpathevaluator.ETreeXPathClassTestCase-class.htmllxml.tests.test_xpathevaluator.ETreeXPathExsltTestCase-class.htmllxml.tests.test_xpathevaluator.ETreeXPathTestCase-class.htmllxml.tests.test_xslt-module.htmllxml.tests.test_xslt-pysrc.htmllxml.tests.test_xslt.ETreeEXSLTTestCase-class.htmllxml.tests.test_xslt.ETreeXSLTExtElementTestCase-class.htmllxml.tests.test_xslt.ETreeXSLTExtFuncTestCase-class.htmllxml.tests.test_xslt.ETreeXSLTTestCase-class.htmllxml.tests.test_xslt.Py3XSLTTestCase-class.htmllxml.usedoctest-module.htmllxml.usedoctest-pysrc.htmlmimetools.Message-class.htmlmodule-tree.htmlredirect.htmlstr-class.htmltoc-everything.htmltoc-lxml-module.htmltoc-lxml.ElementInclude-module.htmltoc-lxml.builder-module.htmltoc-lxml.cssselect-module.htmltoc-lxml.doctestcompare-module.htmltoc-lxml.etree-module.htmltoc-lxml.html-module.htmltoc-lxml.html.ElementSoup-module.htmltoc-lxml.html.builder-module.htmltoc-lxml.html.clean-module.htmltoc-lxml.html.defs-module.htmltoc-lxml.html.diff-module.htmltoc-lxml.html.formfill-module.htmltoc-lxml.html.html5parser-module.htmltoc-lxml.html.soupparser-module.htmltoc-lxml.html.usedoctest-module.htmltoc-lxml.includes-module.htmltoc-lxml.isoschematron-module.htmltoc-lxml.objectify-module.htmltoc-lxml.pyclasslookup-module.htmltoc-lxml.sax-module.htmltoc-lxml.tests-module.htmltoc-lxml.tests.common_imports-module.htmltoc-lxml.tests.dummy_http_server-module.htmltoc-lxml.tests.selftest-module.htmltoc-lxml.tests.selftest2-module.htmltoc-lxml.tests.test_builder-module.htmltoc-lxml.tests.test_classlookup-module.htmltoc-lxml.tests.test_css-module.htmltoc-lxml.tests.test_doctestcompare-module.htmltoc-lxml.tests.test_dtd-module.htmltoc-lxml.tests.test_elementpath-module.htmltoc-lxml.tests.test_elementtree-module.htmltoc-lxml.tests.test_errors-module.htmltoc-lxml.tests.test_etree-module.htmltoc-lxml.tests.test_external_document-module.htmltoc-lxml.tests.test_htmlparser-module.htmltoc-lxml.tests.test_http_io-module.htmltoc-lxml.tests.test_incremental_xmlfile-module.htmltoc-lxml.tests.test_io-module.htmltoc-lxml.tests.test_isoschematron-module.htmltoc-lxml.tests.test_nsclasses-module.htmltoc-lxml.tests.test_objectify-module.htmltoc-lxml.tests.test_pyclasslookup-module.htmltoc-lxml.tests.test_relaxng-module.htmltoc-lxml.tests.test_sax-module.htmltoc-lxml.tests.test_schematron-module.htmltoc-lxml.tests.test_threading-module.htmltoc-lxml.tests.test_unicode-module.htmltoc-lxml.tests.test_xmlschema-module.htmltoc-lxml.tests.test_xpathevaluator-module.htmltoc-lxml.tests.test_xslt-module.htmltoc-lxml.usedoctest-module.htmltoc-xml.etree.ElementTree-module.htmltoc.htmlxml.etree.ElementTree-module.htmlxml.etree.ElementTree-pysrc.htmlxml.etree.ElementTree.Element-class.htmlxml.etree.ElementTree.ElementTree-class.htmlxml.etree.ElementTree.ParseError-class.htmlxml.etree.ElementTree.QName-class.htmlxml.etree.ElementTree.TreeBuilder-class.htmlxml.etree.ElementTree.XMLParser-class.htmlxml.etree.ElementTree._IterParseIterator-class.htmlxml.etree.ElementTree._SimpleElementPath-class.htmlbuild.htmlcapi.htmlchanges-4.0.0.htmlcompatibility.htmlcredits.htmlcssselect.htmlelement_classes.htmlelementsoup.htmlextensions.htmlhtml5parser.htmlindex.htmlinstallation.htmlintro.htmllxml-source-howto.htmllxmlhtml.htmlobjectify.htmlparsing.htmlperformance.htmlpubkey.ascresolvers.htmlsax.htmlsitemap.htmlstyle.csstagpython-big.pngtutorial.htmlvalidation.htmlxpathxslt.htmllxmldoc-4.0.0.pdf/usr/share/doc/packages//usr/share/doc/packages/python3-lxml-doc//usr/share/doc/packages/python3-lxml-doc/html//usr/share/doc/packages/python3-lxml-doc/html/api/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.suse.de/SUSE:Maintenance:26325/SUSE_SLE-15_Update/59b710d4473aba8c4ed5574fc0483e84-python-lxml.SUSE_SLE-15_Updatedrpmxz5x86_64-suse-linuxdirectoryHTML document, ASCII text, with very long linesXML 1.0 document, ASCII textASCII textXML 1.0 document, ASCII text, with very long linesXML 1.0 document, UTF-8 Unicode text, with very long linesPNG image data, 217 x 128, 8-bit/color RGBA, non-interlaced%~yGCuutf-843178b688bead2cae8c4f91bda0a5eebcc4058b5710448e03cb0a7fa611cdac7?P7zXZ !t/]"k%{^E) `>.'˧Dti@RpçHj_s0}NFZ^$YE*}LbtaO@pCty˺͟; yY<4X[ ,ojxZF2bFʯ33Lf]L-zu%UƒmL3+r[9Ԅ-qylb;'1H UPxsT' v8׌Lľꬴ;Ʃ9)BT:.dJ@"#nh:ID#x5&;9Z4kӑXiXJ:`順 ʋ,FՕIf4ߘcπ&Y2sTSBÑ]ຈ0K 'J6v1b(D:k8~T2Q0 '"-z2z/Ak'AU3l!~+, Q'dEzB唋=j"Zx-R3bȦcu# e=$&oC:Jh&DDqunHۉqkN"/Z"{< gV6js†J<HU4R f!VG*R%ɍݳHlpsD_&hBD1%Qы =jǿZ#"xU/θwp 8"XEQO'>.}YACE?{Р9BPR!j3+L .&\}0`f8}IXGc[I֋0#\%V*n " O^-FmlU+quHaʺg"XMjvqNK\t;j)ǒ.(&A|.݋C5vm[r.fp9h1i⍐^^OwzaL/'C&P iq DA 94-: 3Hn6 7+b!qP䖏%1r|H!h.vY$'$ e D@3JPtͧ-wn̎Q@奇k# o@>|BZTu!.;jjg.:BLȐ"6*wN,s=eп6~}t9XKm] uo %_-b;Ov_^+ەZ˅bik]JzbX1M:%BJ6Ŭ| l~r^H:MГ2;Pm2=(OPʞ#rWн+L~$ {:~=eF$*o@4K}*\<@j;O iOИFc (򽞷Zߤj,dHѯj >x 9 p|PՔrxtvh,NVE5o5H͂%[]};\\" 3d9\㪁DC ht]޺fYRg lktu8+ ,0 fp!0+I,5 ?'1P 6 alCL. fNw4G+I$h^Vs3jmNx2 <5xm*,)!+caTY 8^&`'oӔEt2QBh@E P,a.m]C*T6e]0At %7/5/$[F in63޻+?[A!:ek2u y;|dfyw|PH?{0)OQNyh~ibPCc3>=#XBщ+‡rV%Ǻ};8z# ),3ēaa̓_@2(`3H-oxIak YOٚܖ4bE˱}+_'|CcX\0'a `F(^U_ysDSi|aANd!}ldp^xdM`y'GFmfA%y7,cb6=wrZ?GbTBI)tZ'!bz 6hBcN:ҭĥ5D䱃:"(;} Ųoq/i.6&҃3Przð5CLVDRAIP.3'&Q!]R+nxyVY 0M q"ޚ@[)J{WrƮRLkGn25/i%y^J,YSgv^%*t,:ٔ}% mB"\P+ -`Epß_9lJwHh(d]n-tM{: ϼD|lmKsѓ4z0jbaJ#% Gn# 7ah)>+>)"ۉu2MMEUHDЪf@'Ɛ~1_V@d(=Zi砬z֋8yI&@مI}-'V7vhj¶ YZ