diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-27 17:11:21 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-27 17:11:21 +0200 |
| commit | 7e298c025da08d0de096df3fcac7c8fafac9f5c2 (patch) | |
| tree | d905bee6549430b25580d289cdd44776718c5b55 /src/benchmarks/dj_trace.py | |
| parent | 93e3aac6315c17a74e63f02053a3e8e2e6b21928 (diff) | |
| download | allocbench-7e298c025da08d0de096df3fcac7c8fafac9f5c2.tar.gz allocbench-7e298c025da08d0de096df3fcac7c8fafac9f5c2.zip | |
remove verbosity argument from hooks
Diffstat (limited to 'src/benchmarks/dj_trace.py')
| -rw-r--r-- | src/benchmarks/dj_trace.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/benchmarks/dj_trace.py b/src/benchmarks/dj_trace.py index b837a9e..29b0f43 100644 --- a/src/benchmarks/dj_trace.py +++ b/src/benchmarks/dj_trace.py @@ -143,7 +143,8 @@ class BenchmarkDJTrace(Benchmark): return False - def process_output(self, result, stdout, stderr, allocator, perm, verbose): + @staticmethod + def process_output(result, stdout, stderr, allocator, perm): def to_int(string): return int(string.replace(',', "")) |
