This was incorrectly formatted and should have been using block comments from the begining.
Signed-off-by: Dylan Baker <[email protected]> --- framework/environment.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/framework/environment.py b/framework/environment.py index f7027ba..0ff2055 100644 --- a/framework/environment.py +++ b/framework/environment.py @@ -56,12 +56,8 @@ class Environment: self.valgrind = valgrind self.dmesg = dmesg - """ - The filter lists that are read in should be a list of string objects, - however, the filters need to be a list or regex object. - - This code uses re.compile to rebuild the lists and set self.filter - """ + # The filter lists that are read in should be a list of string objects, + # however, the filters need to be a list or regex object. self.filter = [re.compile(x) for x in include_filter] self.exclude_filter = [re.compile(x) for x in exclude_filter] -- 1.8.5.2 _______________________________________________ Piglit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/piglit
