[Lxml-checkins] r47699 - in lxml/trunk: . src/lxml

scoder at codespeak.net scoder at codespeak.net
Mon Oct 22 09:51:26 CEST 2007


Author: scoder
Date: Mon Oct 22 09:51:25 2007
New Revision: 47699

Modified:
   lxml/trunk/setupinfo.py
   lxml/trunk/src/lxml/etreepublic.pxd
Log:
adapted to new module source names

Modified: lxml/trunk/setupinfo.py
==============================================================================
--- lxml/trunk/setupinfo.py	(original)
+++ lxml/trunk/setupinfo.py	Mon Oct 22 09:51:25 2007
@@ -10,9 +10,9 @@
     CYTHON_INSTALLED = False
 
 EXT_MODULES = [
-    ("etree",         "lxml.etree"),
-    ("objectify",     "lxml.objectify"),
-    ("pyclasslookup", "lxml.pyclasslookup")
+    ("lxml.etree",         "lxml.etree"),
+    ("lxml.objectify",     "lxml.objectify"),
+    ("lxml.pyclasslookup", "lxml.pyclasslookup")
     ]
 
 def env_var(name):

Modified: lxml/trunk/src/lxml/etreepublic.pxd
==============================================================================
--- lxml/trunk/src/lxml/etreepublic.pxd	(original)
+++ lxml/trunk/src/lxml/etreepublic.pxd	Mon Oct 22 09:51:25 2007
@@ -16,7 +16,7 @@
                                           int start_node_inclusive)
     cdef void END_FOR_EACH_ELEMENT_FROM(tree.xmlNode* start_node)
 
-cdef extern from "etree.h":
+cdef extern from "lxml.etree.h":
 
     # first function to call!
     cdef int import_etree(etree_module) except -1


More information about the lxml-checkins mailing list