Set inputhook to callback.
(self, callback)
| 86 | return self._callback |
| 87 | |
| 88 | def set_inputhook(self, callback): |
| 89 | """Set inputhook to callback.""" |
| 90 | # We don't (in the context of PyDev console) actually set PyOS_InputHook, but rather |
| 91 | # while waiting for input on xmlrpc we run this code |
| 92 | self._callback = callback |
| 93 | |
| 94 | def clear_inputhook(self, app=None): |
| 95 | """Clear input hook. |
no outgoing calls
no test coverage detected