##// END OF EJS Templates
Merge pull request #10993 from minrk/exec-count...
Merge pull request #10993 from minrk/exec-count fix execution count when custom exception is caught during compile

File last commit:

r23997:7de483b5
r24140:35a4f43a merge
Show More
event-callbacks-updates.rst
7 lines | 379 B | text/x-rst | RstLexer
/ docs / source / whatsnew / pr / event-callbacks-updates.rst
Fabio Niephaus
Ensure post event callbacks are always called....
r23982 The *post* event callbacks are now always called, even when the execution failed
(for example because of a ``SyntaxError``).
Fabio Niephaus
Rename ExecutionRequest to ExecutionInfo; refactor
r23997 Additionally, the execution info and result objects are now made available in
the corresponding *pre* or *post* ``*_run_cell`` event callbacks in a backward
compatible manner.
Fabio Niephaus
Ensure post event callbacks are always called....
r23982
* `Related GitHub issue <https://github.com/ipython/ipython/issues/10774>`__