##// END OF EJS Templates
Ensure post event callbacks are always called....
Ensure post event callbacks are always called. Also, provide the execution result object as an argument for both *pre* and *post* event callbacks in a backward compatible manner. Closes #10774.

File last commit:

r23982:36f05a33
r23982:36f05a33
Show More
event-callbacks-updates.rst
6 lines | 341 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``).
Additionally, the execution result object is now made available in both *pre*
and *post* event callbacks in a backward compatible manner.
* `Related GitHub issue <https://github.com/ipython/ipython/issues/10774>`__