Waits for the function to finish and yields its return value.
(self)
| 120 | self._error = e |
| 121 | |
| 122 | def now(self): |
| 123 | """ Waits for the function to finish and yields its return value. |
| 124 | """ |
| 125 | self._thread.join(); return self._response |
| 126 | |
| 127 | @property |
| 128 | def elapsed(self): |
no outgoing calls