[Piglit] [PATCH 09/44] framework/test/base.py: fix class/__slots__ conflict in python3

baker.dylan.c at gmail.com baker.dylan.c at gmail.com
Wed Jan 27 16:06:17 PST 2016


From: Dylan Baker <baker.dylan.c at gmail.com>

Signed-off-by: Dylan Baker <dylanx.c.baker at intel.com>
---
 framework/test/base.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/framework/test/base.py b/framework/test/base.py
index 43f81c4..0c15808 100644
--- a/framework/test/base.py
+++ b/framework/test/base.py
@@ -129,8 +129,7 @@ class Test(object):
 
     """
     __metaclass__ = abc.ABCMeta
-    __slots__ = ['run_concurrent', 'env', 'result', 'cwd', '_command',
-                 'timeout']
+    __slots__ = ['run_concurrent', 'env', 'result', 'cwd', '_command']
     timeout = None
 
     def __init__(self, command, run_concurrent=False, timeout=None):
-- 
2.7.0



More information about the Piglit mailing list