[Lxml-checkins] r44668 - lxml/trunk/src/lxml
scoder at codespeak.net
scoder at codespeak.net
Mon Jul 2 16:49:19 CEST 2007
Author: scoder
Date: Mon Jul 2 16:49:18 2007
New Revision: 44668
Modified:
lxml/trunk/src/lxml/objectify.pyx
lxml/trunk/src/lxml/pyclasslookup.pyx
Log:
provide __version__ in all Pyrex modules
Modified: lxml/trunk/src/lxml/objectify.pyx
==============================================================================
--- lxml/trunk/src/lxml/objectify.pyx (original)
+++ lxml/trunk/src/lxml/objectify.pyx Mon Jul 2 16:49:18 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/trunk/src/lxml/pyclasslookup.pyx
==============================================================================
--- lxml/trunk/src/lxml/pyclasslookup.pyx (original)
+++ lxml/trunk/src/lxml/pyclasslookup.pyx Mon Jul 2 16:49:18 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