[Lxml-checkins] r44718 - lxml/trunk/src/lxml

scoder at codespeak.net scoder at codespeak.net
Wed Jul 4 10:31:46 CEST 2007


Author: scoder
Date: Wed Jul  4 10:31:46 2007
New Revision: 44718

Modified:
   lxml/trunk/src/lxml/etreepublic.pxd
Log:
comments

Modified: lxml/trunk/src/lxml/etreepublic.pxd
==============================================================================
--- lxml/trunk/src/lxml/etreepublic.pxd	(original)
+++ lxml/trunk/src/lxml/etreepublic.pxd	Wed Jul  4 10:31:46 2007
@@ -4,7 +4,7 @@
 cimport python
 
 cdef extern from "etree_defs.h":
-    # test if c_node is considered an Element (i.e. Element or Comment)
+    # test if c_node is considered an Element (i.e. Element, Comment, etc.)
     cdef int _isElement(tree.xmlNode* c_node)
 
     # return the namespace URI of the node or NULL
@@ -13,7 +13,7 @@
     # pair of macros for tree traversal
     cdef void BEGIN_FOR_EACH_ELEMENT_FROM(tree.xmlNode* tree_top,
                                           tree.xmlNode* start_node,
-                                          int inclusive)
+                                          int start_node_inclusive)
     cdef void END_FOR_EACH_ELEMENT_FROM(tree.xmlNode* start_node)
 
 cdef extern from "etree.h":


More information about the lxml-checkins mailing list