[Lxml-checkins] r47889 - lxml/trunk/src/lxml
scoder at codespeak.net
scoder at codespeak.net
Thu Oct 25 10:03:32 CEST 2007
Author: scoder
Date: Thu Oct 25 10:03:32 2007
New Revision: 47889
Modified:
lxml/trunk/src/lxml/etreepublic.pxd
Log:
fixed public API description
Modified: lxml/trunk/src/lxml/etreepublic.pxd
==============================================================================
--- lxml/trunk/src/lxml/etreepublic.pxd (original)
+++ lxml/trunk/src/lxml/etreepublic.pxd Thu Oct 25 10:03:32 2007
@@ -133,15 +133,15 @@
# find child element number 'index' (supports negative indexes)
cdef tree.xmlNode* findChild(tree.xmlNode* c_node,
- python.Py_ssize_t index)
+ Py_ssize_t index)
# find child element number 'index' starting at first one
cdef tree.xmlNode* findChildForwards(tree.xmlNode* c_node,
- python.Py_ssize_t index)
+ Py_ssize_t index)
# find child element number 'index' starting at last one
cdef tree.xmlNode* findChildBackwards(tree.xmlNode* c_node,
- python.Py_ssize_t index)
+ Py_ssize_t index)
# return next/previous sibling element of the node
cdef tree.xmlNode* nextElement(tree.xmlNode* c_node)
More information about the lxml-checkins
mailing list