From: Thomas Fillon Date: Thu, 10 Oct 2013 09:26:26 +0000 (+0200) Subject: Add a results() property to the ProcessPipe to get the results of all the analyzers X-Git-Tag: 0.5.0~39 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=0bd492359fd945030d0903c042dd92a5aaee26cb;p=timeside.git Add a results() property to the ProcessPipe to get the results of all the analyzers --- 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