summaryrefslogtreecommitdiff
path: root/devel/py-rbtree/files/patch-src__rbtree.pyx
diff options
context:
space:
mode:
authorLi-Wen Hsu <lwhsu@FreeBSD.org>2007-04-05 02:17:16 +0000
committerLi-Wen Hsu <lwhsu@FreeBSD.org>2007-04-05 02:17:16 +0000
commit96a3596ae518e6f5911604df0814e64021659c1f (patch)
treec5815484c82e13ff0935bba249e3f225c2385a43 /devel/py-rbtree/files/patch-src__rbtree.pyx
parent- Update to 1.9.1 (diff)
- Update to 0.8.0
- Fix DOCSDIR - Assign to python@FreeBSD.org Approved by: clsung (mentor)
Diffstat (limited to 'devel/py-rbtree/files/patch-src__rbtree.pyx')
-rw-r--r--devel/py-rbtree/files/patch-src__rbtree.pyx20
1 files changed, 20 insertions, 0 deletions
diff --git a/devel/py-rbtree/files/patch-src__rbtree.pyx b/devel/py-rbtree/files/patch-src__rbtree.pyx
new file mode 100644
index 000000000000..9e00ea09f72f
--- /dev/null
+++ b/devel/py-rbtree/files/patch-src__rbtree.pyx
@@ -0,0 +1,20 @@
+--- ./src/rbtree.pyx.orig Sat Feb 10 06:49:24 2007
++++ ./src/rbtree.pyx Mon Mar 26 10:19:44 2007
+@@ -83,7 +83,7 @@
+ cdef int _done
+ cdef iter_direction _direction
+
+- def __new__(self, RBTree tree, int itype):
++ def __new__(self, RBTree tree, itype):
+ self._T = tree
+ self._iter = NULL
+ self._type = itype
+@@ -93,7 +93,7 @@
+ property direction:
+ def __get__(self):
+ return self._direction
+- def __set__(self, int value):
++ def __set__(self, value):
+ self._direction = value
+
+ cdef _position(self, iter_direction direction):