[Lxml-checkins] r33899 - lxml/branch/lxml-1.1/src/lxml/tests
scoder at codespeak.net
scoder at codespeak.net
Mon Oct 30 15:50:28 CET 2006
Author: scoder
Date: Mon Oct 30 15:50:26 2006
New Revision: 33899
Modified:
lxml/branch/lxml-1.1/src/lxml/tests/test_etree.py
Log:
print Python version when running tests
Modified: lxml/branch/lxml-1.1/src/lxml/tests/test_etree.py
==============================================================================
--- lxml/branch/lxml-1.1/src/lxml/tests/test_etree.py (original)
+++ lxml/branch/lxml-1.1/src/lxml/tests/test_etree.py Mon Oct 30 15:50:26 2006
@@ -8,13 +8,14 @@
"""
-import unittest, doctest, copy
+import unittest, doctest, copy, sys
from common_imports import etree, StringIO, HelperTestCase, fileInTestDir
from common_imports import SillyFileLike, canonicalize
print
print "TESTED VERSION:"
+print " Python: ", sys.version_info
print " lxml.etree: ", etree.LXML_VERSION
print " libxml used: ", etree.LIBXML_VERSION
print " libxml compiled: ", etree.LIBXML_COMPILED_VERSION
More information about the lxml-checkins
mailing list