Author: johannes
Date: 2005-07-20 03:16:28 -0500 (Wed, 20 Jul 2005)
New Revision: 7739
Modified:
trunk/gnue-common/tests/drivers/checkem.py
Log:
Print the real fractional second (since a str () might cut away some digits)
Modified: trunk/gnue-common/tests/drivers/checkem.py
===================================================================
--- trunk/gnue-common/tests/drivers/checkem.py 2005-07-20 08:15:35 UTC (rev
7738)
+++ trunk/gnue-common/tests/drivers/checkem.py 2005-07-20 08:16:28 UTC (rev
7739)
@@ -58,7 +58,8 @@
for (ix, rec) in enumerate (cursor.fetchall ()):
print "Record:", ix
for item in rec:
- print item, type (item)
+ detail = hasattr (item, 'second') and item.second or 'n/a'
+ print item, type (item), detail
print "-" * 75
self.writeCheck ()
_______________________________________________
Commit-gnue mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/commit-gnue