summaryrefslogtreecommitdiff
path: root/dev-python/pyxml/files/pyxml-0.8.4-python-2.6.patch
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2018-07-26 02:19:36 +0300
committerMikle Kolyada <zlogene@gentoo.org>2018-07-26 02:19:36 +0300
commit8b6ccd70a8985311979bbb2cefddd17e855e7693 (patch)
treeb8c04bbbe5a2a15efff12f27ccca106f958af8da /dev-python/pyxml/files/pyxml-0.8.4-python-2.6.patch
parent06794555a434e8d36eed81f0afe18ec2a433c871 (diff)
downloadgentoo-8b6ccd70a8985311979bbb2cefddd17e855e7693.tar.gz
gentoo-8b6ccd70a8985311979bbb2cefddd17e855e7693.tar.bz2
gentoo-8b6ccd70a8985311979bbb2cefddd17e855e7693.zip
dev-python/pyxml: remove last rited package
Closes: https://bugs.gentoo.org/653664
Diffstat (limited to 'dev-python/pyxml/files/pyxml-0.8.4-python-2.6.patch')
-rw-r--r--dev-python/pyxml/files/pyxml-0.8.4-python-2.6.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/dev-python/pyxml/files/pyxml-0.8.4-python-2.6.patch b/dev-python/pyxml/files/pyxml-0.8.4-python-2.6.patch
deleted file mode 100644
index d29b0b6a9eb2..000000000000
--- a/dev-python/pyxml/files/pyxml-0.8.4-python-2.6.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-diff -rupN PyXML-0.8.4-old/xml/xpath/ParsedAbbreviatedAbsoluteLocationPath.py PyXML-0.8.4/xml/xpath/ParsedAbbreviatedAbsoluteLocationPath.py
---- PyXML-0.8.4-old/xml/xpath/ParsedAbbreviatedAbsoluteLocationPath.py 2008-12-15 16:54:36.000000000 +0900
-+++ PyXML-0.8.4/xml/xpath/ParsedAbbreviatedAbsoluteLocationPath.py 2008-12-15 16:57:02.000000000 +0900
-@@ -24,8 +24,8 @@ class ParsedAbbreviatedAbsoluteLocationP
- self._rel = rel
- nt = ParsedNodeTest.ParsedNodeTest('node', '')
- ppl = ParsedPredicateList.ParsedPredicateList([])
-- as = ParsedAxisSpecifier.ParsedAxisSpecifier('descendant-or-self')
-- self._step = ParsedStep.ParsedStep(as, nt, ppl)
-+ as_ = ParsedAxisSpecifier.ParsedAxisSpecifier('descendant-or-self')
-+ self._step = ParsedStep.ParsedStep(as_, nt, ppl)
- return
-
- def evaluate(self, context):
-diff -rupN PyXML-0.8.4-old/xml/xpath/ParsedAbbreviatedRelativeLocationPath.py PyXML-0.8.4/xml/xpath/ParsedAbbreviatedRelativeLocationPath.py
---- PyXML-0.8.4-old/xml/xpath/ParsedAbbreviatedRelativeLocationPath.py 2008-12-15 16:54:36.000000000 +0900
-+++ PyXML-0.8.4/xml/xpath/ParsedAbbreviatedRelativeLocationPath.py 2008-12-15 16:58:58.000000000 +0900
-@@ -28,8 +28,8 @@ class ParsedAbbreviatedRelativeLocationP
- self._right = right
- nt = ParsedNodeTest.ParsedNodeTest('node','')
- ppl = ParsedPredicateList.ParsedPredicateList([])
-- as = ParsedAxisSpecifier.ParsedAxisSpecifier('descendant-or-self')
-- self._middle = ParsedStep.ParsedStep(as, nt, ppl)
-+ as_ = ParsedAxisSpecifier.ParsedAxisSpecifier('descendant-or-self')
-+ self._middle = ParsedStep.ParsedStep(as_, nt, ppl)
-
- def evaluate(self, context):
- res = []