Modified:
/trunk/namespace.py
=======================================
--- /trunk/namespace.py Sun Feb 21 17:06:02 2010
+++ /trunk/namespace.py Mon Feb 22 19:51:09 2010
@@ -122,8 +122,6 @@
return
logger.error("Error executing script file '%s'\n%s",
self.filePath, "".join(self.lastError).rstrip("\r\n"))
- # for line in self.lastError:
- #logger.error(line.rstrip("\r\n"))
if flush:
self.lastError = None
@@ -150,7 +148,7 @@
if v.__module__ != "__builtin__":
exportable = False
# Skip actual builtin objects.
- elif v in builtinValues:
+ elif v in builtinValues or issubclass(v,
unittest.TestCase):
exportable = False
yield k, v, valueType, exportable