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

scoder at codespeak.net scoder at codespeak.net
Mon May 14 10:34:42 CEST 2007


Author: scoder
Date: Mon May 14 10:34:41 2007
New Revision: 43351

Modified:
   lxml/trunk/src/lxml/etreepublic.pxd
Log:
fixed field name in C-API

Modified: lxml/trunk/src/lxml/etreepublic.pxd
==============================================================================
--- lxml/trunk/src/lxml/etreepublic.pxd	(original)
+++ lxml/trunk/src/lxml/etreepublic.pxd	Mon May 14 10:34:41 2007
@@ -36,7 +36,7 @@
 
     cdef class lxml.etree._ElementTree [ object LxmlElementTree ]:
         cdef _Document _doc
-        cdef _Element  _element
+        cdef _Element  _context_node
 
     cdef class lxml.etree.ElementClassLookup [ object LxmlElementClassLookup ]:
         cdef object (*_lookup_function)(object, _Document, tree.xmlNode*)
@@ -82,7 +82,7 @@
     cdef object lookupNamespaceElementClass(_1, _Document _2,
                                             tree.xmlNode* c_node)
 
-    # call the fallback lookup function of an FallbackElementClassLookup
+    # call the fallback lookup function of a FallbackElementClassLookup
     cdef object callLookupFallback(FallbackElementClassLookup lookup,
                                    _Document doc, tree.xmlNode* c_node)
 


More information about the lxml-checkins mailing list