From 0bd492359fd945030d0903c042dd92a5aaee26cb Mon Sep 17 00:00:00 2001 From: Thomas Fillon Date: Thu, 10 Oct 2013 11:26:26 +0200 Subject: [PATCH] Add a results() property to the ProcessPipe to get the results of all the analyzers --- timeside/core.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/timeside/core.py b/timeside/core.py index b236053..4804ad2 100644 --- a/timeside/core.py +++ b/timeside/core.py @@ -263,3 +263,11 @@ class ProcessPipe(object): item.release() return self + + @property + def results(self): + """ + Results Container for all the analyzers of the Pipe process + """ + if hasattr(self, '_results'): + return self._results \ No newline at end of file -- 2.39.5