Fires after user-entered code runs. Parameters ---------- result : :class:`~IPython.core.interactiveshell.ExecutionResult` The object which will be returned as the execution result.
(result)
| 136 | |
| 137 | @_define_event |
| 138 | def post_run_cell(result): |
| 139 | """Fires after user-entered code runs. |
| 140 | |
| 141 | Parameters |
| 142 | ---------- |
| 143 | result : :class:`~IPython.core.interactiveshell.ExecutionResult` |
| 144 | The object which will be returned as the execution result. |
| 145 | """ |
| 146 | pass |
| 147 | |
| 148 | @_define_event |
| 149 | def shell_initialized(ip): |
nothing calls this directly
no outgoing calls
no test coverage detected