@@ -220,8 +220,6 @@ def _find(self, tests, obj, name, module, source_lines, globs, seen):
220220 if inspect .isclass (obj ) and self ._recurse :
221221 #print 'RECURSE into class:',obj # dbg
222222 for valname , val in obj .__dict__ .items ():
223- #valname1 = '%s.%s' % (name, valname) # dbg
224- #print 'N',name,'VN:',valname,'val:',str(val)[:77] # dbg
225223 # Special handling for staticmethod/classmethod.
226224 if isinstance (val , staticmethod ):
227225 val = getattr (obj , valname )
@@ -300,8 +298,6 @@ def __init__(self, test, optionflags=0, setUp=None, tearDown=None,
300298
301299 # Modified runTest from the default stdlib
302300 def runTest (self ):
303- #print 'HERE!' # dbg
304-
305301 test = self ._dt_test
306302 old = sys .stdout
307303 new = StringIO ()
@@ -481,7 +477,6 @@ def parse(self, string, name='<string>'):
481477
482478 # Create an Example, and add it to the list.
483479 if not self ._IS_BLANK_OR_COMMENT (source ):
484- #print 'Example source:', source # dbg
485480 output .append (Example (source , want , exc_msg ,
486481 lineno = lineno ,
487482 indent = min_indent + len (m .group ('indent' )),
0 commit comments