summaryrefslogtreecommitdiff
path: root/src/lxml/python.pxd
diff options
context:
space:
mode:
authorscoder <none@none>2008-04-27 21:03:08 +0200
committerscoder <none@none>2008-04-27 21:03:08 +0200
commitad96d464fe68d372aafbb18553b220d30103ce90 (patch)
tree6fd1d9faa3b2a4e6b1ff77dede068bab04e1df2b /src/lxml/python.pxd
parent42ff0cfd0173afd203a8d0fb9ac393d2aa241390 (diff)
downloadpython-lxml-ad96d464fe68d372aafbb18553b220d30103ce90.tar.gz
[svn r3606] r4097@delle: sbehnel | 2008-04-27 21:00:32 +0200
fixes for namespace setup on new Elements --HG-- branch : trunk
Diffstat (limited to 'src/lxml/python.pxd')
-rw-r--r--src/lxml/python.pxd2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lxml/python.pxd b/src/lxml/python.pxd
index 36ead488..bcde78fc 100644
--- a/src/lxml/python.pxd
+++ b/src/lxml/python.pxd
@@ -59,6 +59,8 @@ cdef extern from "Python.h":
cdef int PyList_Insert(object l, Py_ssize_t index, object o) except -1
cdef object PyList_AsTuple(object l)
cdef void PyList_Clear(object l)
+ cdef void PyList_Sort(object l)
+ cdef void PyList_Reverse(object l)
cdef int PyDict_SetItemString(object d, char* key, object value) except -1
cdef int PyDict_SetItem(object d, object key, object value) except -1