(self, frame, attr, expression, scope=None)
| 200 | return None |
| 201 | |
| 202 | def change_variable(self, frame, attr, expression, scope=None): |
| 203 | for plugin in self.active_plugins: |
| 204 | ret = plugin.change_variable(frame, attr, expression, self.EMPTY_SENTINEL, scope) |
| 205 | if ret is not self.EMPTY_SENTINEL: |
| 206 | return ret |
| 207 | |
| 208 | return self.EMPTY_SENTINEL |
no outgoing calls
no test coverage detected