[Lxml-checkins] r33898 - lxml/trunk/src/lxml/tests

scoder at codespeak.net scoder at codespeak.net
Mon Oct 30 15:49:43 CET 2006


Author: scoder
Date: Mon Oct 30 15:49:42 2006
New Revision: 33898

Modified:
   lxml/trunk/src/lxml/tests/test_etree.py
Log:
print Python version when running tests

Modified: lxml/trunk/src/lxml/tests/test_etree.py
==============================================================================
--- lxml/trunk/src/lxml/tests/test_etree.py	(original)
+++ lxml/trunk/src/lxml/tests/test_etree.py	Mon Oct 30 15:49:42 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