[Lxml-checkins] r44670 - lxml/branch/lxml-1.3/src/lxml

scoder at codespeak.net scoder at codespeak.net
Mon Jul 2 16:52:54 CEST 2007


Author: scoder
Date: Mon Jul  2 16:52:54 2007
New Revision: 44670

Modified:
   lxml/branch/lxml-1.3/src/lxml/objectify.pyx
   lxml/branch/lxml-1.3/src/lxml/pyclasslookup.pyx
Log:
provide __version__ in all Pyrex modules

Modified: lxml/branch/lxml-1.3/src/lxml/objectify.pyx
==============================================================================
--- lxml/branch/lxml-1.3/src/lxml/objectify.pyx	(original)
+++ lxml/branch/lxml-1.3/src/lxml/objectify.pyx	Mon Jul  2 16:52:54 2007
@@ -13,6 +13,8 @@
 # initialize C-API of lxml.etree
 import_etree(etree)
 
+__version__ = etree.__version__
+
 cdef object SubElement
 SubElement = etree.SubElement
 

Modified: lxml/branch/lxml-1.3/src/lxml/pyclasslookup.pyx
==============================================================================
--- lxml/branch/lxml-1.3/src/lxml/pyclasslookup.pyx	(original)
+++ lxml/branch/lxml-1.3/src/lxml/pyclasslookup.pyx	Mon Jul  2 16:52:54 2007
@@ -15,6 +15,8 @@
 # initialize C-API of lxml.etree
 import_etree(etree)
 
+__version__ = etree.__version__
+
 cdef class _ElementProxy:
     cdef tree.xmlNode* _c_node
     cdef object _source_proxy


More information about the lxml-checkins mailing list