diff options
author | Leonardo Arena <rnalrd@alpinelinux.org> | 2017-04-24 12:57:23 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2017-04-24 12:57:23 +0000 |
commit | e64d28e54f5b0f9796e6971b46765afa5ef041c1 (patch) | |
tree | 5a7adb32281541f5a7d6c20da922417b3e17ff35 /main/py-xml/fix-python2.6.patch | |
parent | eeb3e3bfc3290f4ec8c76b6b542c4c8ad0a06097 (diff) | |
download | aports-e64d28e54f5b0f9796e6971b46765afa5ef041c1.tar.bz2 aports-e64d28e54f5b0f9796e6971b46765afa5ef041c1.tar.xz |
main/py-xml: project's dead
It's not used by any package. Deleted.
Diffstat (limited to 'main/py-xml/fix-python2.6.patch')
-rw-r--r-- | main/py-xml/fix-python2.6.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/main/py-xml/fix-python2.6.patch b/main/py-xml/fix-python2.6.patch deleted file mode 100644 index 7bf1c46fc9..0000000000 --- a/main/py-xml/fix-python2.6.patch +++ /dev/null @@ -1,28 +0,0 @@ -diff -ur a/xml/xpath/ParsedAbbreviatedAbsoluteLocationPath.py b/xml/xpath/ParsedAbbreviatedAbsoluteLocationPath.py ---- a/xml/xpath/ParsedAbbreviatedAbsoluteLocationPath.py 2003-03-11 15:01:34.000000000 +0100 -+++ b/xml/xpath/ParsedAbbreviatedAbsoluteLocationPath.py 2009-05-25 16:32:26.000000000 +0200 -@@ -24,8 +24,8 @@ - self._rel = rel - nt = ParsedNodeTest.ParsedNodeTest('node', '') - ppl = ParsedPredicateList.ParsedPredicateList([]) -- as = ParsedAxisSpecifier.ParsedAxisSpecifier('descendant-or-self') -- self._step = ParsedStep.ParsedStep(as, nt, ppl) -+ asp = ParsedAxisSpecifier.ParsedAxisSpecifier('descendant-or-self') -+ self._step = ParsedStep.ParsedStep(asp, nt, ppl) - return - - def evaluate(self, context): -diff -ur a/xml/xpath/ParsedAbbreviatedRelativeLocationPath.py b/xml/xpath/ParsedAbbreviatedRelativeLocationPath.py ---- a/xml/xpath/ParsedAbbreviatedRelativeLocationPath.py 2003-03-11 15:01:34.000000000 +0100 -+++ b/xml/xpath/ParsedAbbreviatedRelativeLocationPath.py 2009-05-25 16:27:55.000000000 +0200 -@@ -28,8 +28,8 @@ - self._right = right - nt = ParsedNodeTest.ParsedNodeTest('node','') - ppl = ParsedPredicateList.ParsedPredicateList([]) -- as = ParsedAxisSpecifier.ParsedAxisSpecifier('descendant-or-self') -- self._middle = ParsedStep.ParsedStep(as, nt, ppl) -+ asp = ParsedAxisSpecifier.ParsedAxisSpecifier('descendant-or-self') -+ self._middle = ParsedStep.ParsedStep(asp, nt, ppl) - - def evaluate(self, context): - res = [] |