Author: Ronny Pfannschmidt <ronny.pfannschm...@gmx.de>
Branch: refine-testrunner
Changeset: r65999:b38869803bca
Date: 2013-08-07 19:29 +0200
http://bitbucket.org/pypy/pypy/changeset/b38869803bca/

Log:    cleanup in filetimes

diff --git a/testrunner/filetimes.py b/testrunner/filetimes.py
--- a/testrunner/filetimes.py
+++ b/testrunner/filetimes.py
@@ -11,13 +11,14 @@
 xml = parse(opts.junitxml)
 root = xml.getroot()
 
+bugstarts = 'interpreter', 'tool', 'module'
 
-bugstarts = 'interpreter', 'tool', 'module'
+
 def findfile(root, classname):
     if not classname:
         return
     parts = classname.split('.')
-    
+
     #pytest bug workaround
     first = parts[0]
     for start in bugstarts:
@@ -43,8 +44,6 @@
         garbageitems.append(item)
 
 
-
-
 garbage = accum.pop(None, [])
 if garbage:
     print 'garbage', sum(garbage), len(garbage)
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to