diff options
author | mathieui <mathieui@mathieui.net> | 2021-02-04 18:32:10 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2021-02-04 18:32:10 +0100 |
commit | 782dbdea65bfcb09573b1e22f034771a027b4b88 (patch) | |
tree | f1166964ed54851c462850b28282a427573c6935 | |
parent | 650e1a2ed5d3c665e511c5fdac300e9a57d242bb (diff) | |
download | slixmpp-782dbdea65bfcb09573b1e22f034771a027b4b88.tar.gz slixmpp-782dbdea65bfcb09573b1e22f034771a027b4b88.tar.bz2 slixmpp-782dbdea65bfcb09573b1e22f034771a027b4b88.tar.xz slixmpp-782dbdea65bfcb09573b1e22f034771a027b4b88.zip |
docs: remove python 2 bug workaround explanations
-rw-r--r-- | slixmpp/xmlstream/matcher/xpath.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/slixmpp/xmlstream/matcher/xpath.py b/slixmpp/xmlstream/matcher/xpath.py index 31ab1b8c..0edef5a9 100644 --- a/slixmpp/xmlstream/matcher/xpath.py +++ b/slixmpp/xmlstream/matcher/xpath.py @@ -19,15 +19,6 @@ class MatchXPath(MatcherBase): The XPath matcher selects stanzas whose XML contents matches a given XPath expression. - .. warning:: - - Using this matcher may not produce expected behavior when using - attribute selectors. For Python 2.6 and 3.1, the ElementTree - :meth:`~xml.etree.ElementTree.Element.find()` method does - not support the use of attribute selectors. If you need to - support Python 2.6 or 3.1, it might be more useful to use a - :class:`~slixmpp.xmlstream.matcher.stanzapath.StanzaPath` matcher. - If the value of :data:`IGNORE_NS` is set to ``True``, then XPath expressions will be matched without using namespaces. """ @@ -42,12 +33,6 @@ class MatchXPath(MatcherBase): If the value of :data:`IGNORE_NS` is set to ``True``, then XPath expressions will be matched without using namespaces. - .. warning:: - - In Python 2.6 and 3.1 the ElementTree - :meth:`~xml.etree.ElementTree.Element.find()` method does not - support attribute selectors in the XPath expression. - :param xml: The :class:`~slixmpp.xmlstream.stanzabase.ElementBase` stanza to compare against. """ |