/rev/16c66869c039
changeset: 1332:16c66869c039
user:      Martin Geisler <[email protected]>
date:      Tue Oct 27 11:01:03 2009 +0100
summary:   benchmark: removed unnecessary object base class

diffstat:

 apps/benchmark.py |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (16 lines):

diff -r 7856dceaf7b5 -r 16c66869c039 apps/benchmark.py
--- a/apps/benchmark.py Tue Oct 27 10:13:06 2009 +0100
+++ b/apps/benchmark.py Tue Oct 27 11:01:03 2009 +0100
@@ -222,10 +222,10 @@
     needed_data = eval(open(options.needed_data).read())
 
 if options.needed_data and options.pc:
-    bases = (benchmark, NeededDataBenchmarkStrategy, operation_arity, object)
+    bases = (benchmark, NeededDataBenchmarkStrategy, operation_arity)
     options.pc = eval(options.pc)
 else:
-    bases = (benchmark, SelfcontainedBenchmarkStrategy, operation_arity, 
object)
+    bases = (benchmark, SelfcontainedBenchmarkStrategy, operation_arity)
 
 print "Using the Benchmark bases:"
 for b in bases:
_______________________________________________
viff-commits mailing list
[email protected]
http://lists.viff.dk/listinfo.cgi/viff-commits-viff.dk

Reply via email to