Will be used to set _ip point to current ipython instance b/f call Override this method if you don't want this to happen.
(self, ip)
| 40 | self._ip = ip |
| 41 | |
| 42 | def set_ip(self, ip): |
| 43 | """ Will be used to set _ip point to current ipython instance b/f call |
| 44 | |
| 45 | Override this method if you don't want this to happen. |
| 46 | |
| 47 | """ |
| 48 | self._ip = ip |
| 49 | |
| 50 | |
| 51 | class ExitAutocall(IPyAutocall): |