Fires before user-entered code runs. Parameters ---------- info : :class:`~IPython.core.interactiveshell.ExecutionInfo` An object containing information used for the code execution.
(info)
| 116 | |
| 117 | @_define_event |
| 118 | def pre_run_cell(info): |
| 119 | """Fires before user-entered code runs. |
| 120 | |
| 121 | Parameters |
| 122 | ---------- |
| 123 | info : :class:`~IPython.core.interactiveshell.ExecutionInfo` |
| 124 | An object containing information used for the code execution. |
| 125 | """ |
| 126 | pass |
| 127 | |
| 128 | @_define_event |
| 129 | def post_execute(): |
nothing calls this directly
no outgoing calls
no test coverage detected