Puts `next_proc` after itself in the chain.
(self, next_proc)
| 44 | self._requirement = DROP_RESULT |
| 45 | |
| 46 | def connect_to(self, next_proc): |
| 47 | """Puts `next_proc` after itself in the chain.""" |
| 48 | next_proc._prev_proc = self |
| 49 | self._next_proc = next_proc |
| 50 | def next_test(self, test): |
| 51 | """ |
| 52 | Method called by previous processor whenever it produces new test. |
no outgoing calls