[Piglit] [PATCH 08/13] results.py: Modernize some things
Dylan Baker
baker.dylan.c at gmail.com
Sat Jun 21 05:06:09 PDT 2014
Use super() instead of an explicit call to the parent class in one case,
and make all classes descend from object (make them new-style classes)
Signed-off-by: Dylan Baker <baker.dylan.c at gmail.com>
---
framework/results.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/framework/results.py b/framework/results.py
index 7762d39..356aefb 100644
--- a/framework/results.py
+++ b/framework/results.py
@@ -53,7 +53,7 @@ def _piglit_encoder(obj):
return obj
-class JSONWriter:
+class JSONWriter(object):
'''
Writes to a JSON file stream
@@ -181,7 +181,7 @@ class JSONWriter:
class TestResult(dict):
def __init__(self, *args):
- dict.__init__(self, *args)
+ super(TestResult, self).__init__(*args)
# Replace the result with a status object
try:
@@ -192,7 +192,7 @@ class TestResult(dict):
pass
-class TestrunResult:
+class TestrunResult(object):
def __init__(self, resultfile=None):
self.serialized_keys = ['options',
'name',
--
2.0.0
More information about the Piglit
mailing list