Un-register cb from the callbacks
(self, cb)
| 45 | self.callbacks.append(cb) |
| 46 | |
| 47 | def remove_callback(self, cb): |
| 48 | """ Un-register cb from the callbacks """ |
| 49 | self.callbacks.remove(cb) |
| 50 | |
| 51 | def call(self, *args): |
| 52 | """ Call the callbacks registered with the arguments args """ |