| 181 | assert len(o._subscriptions) == 0 |
| 182 | |
| 183 | class binder: |
| 184 | def __init__(self): |
| 185 | self.o = TO() |
| 186 | self.called = False |
| 187 | self.o.subscribe(self.bound, ["two"]) |
| 188 | |
| 189 | def bound(self, *args, **kwargs): |
| 190 | self.called = True |
| 191 | |
| 192 | t = binder() |
| 193 | t.o.one = 3 |
no outgoing calls
searching dependent graphs…