##// END OF EJS Templates
Added deprecation warning for enable_win_unicode_console #11953
Added deprecation warning for enable_win_unicode_console #11953

File last commit:

r23982:36f05a33
r25247:747cdeb2
Show More
execution.rst
65 lines | 2.4 KiB | text/x-rst | RstLexer
MinRK
msg spec 5.0
r16594 .. _execution_semantics:
Execution semantics in the IPython kernel
=========================================
Sudarshan Rangarajan
Fix typo
r23755 The execution of user code consists of the following phases:
MinRK
msg spec 5.0
r16594
1. Fire the ``pre_execute`` event.
Fabio Niephaus
Add support for "finally" event callbacks....
r23909 2. Fire the ``pre_run_cell`` event unless silent is ``True``.
MinRK
msg spec 5.0
r16594 3. Execute the ``code`` field, see below for details.
4. If execution succeeds, expressions in ``user_expressions`` are computed.
This ensures that any error in the expressions don't affect the main code execution.
Fabio Niephaus
Ensure post event callbacks are always called....
r23982 5. Fire the ``post_execute`` event.
6. Fire the ``post_run_cell`` event unless silent is ``True``.
MinRK
msg spec 5.0
r16594
MinRK
updates per review...
r16665 .. seealso::
Thomas Kluyver
Some doc fixes
r16815 :doc:`/config/callbacks`
MinRK
msg spec 5.0
r16594
To understand how the ``code`` field is executed, one must know that Python
code can be compiled in one of three modes (controlled by the ``mode`` argument
to the :func:`compile` builtin):
*single*
Valid for a single interactive statement (though the source can contain
multiple lines, such as a for loop). When compiled in this mode, the
generated bytecode contains special instructions that trigger the calling of
:func:`sys.displayhook` for any expression in the block that returns a value.
This means that a single statement can actually produce multiple calls to
:func:`sys.displayhook`, if for example it contains a loop where each
iteration computes an unassigned expression would generate 10 calls::
for i in range(10):
i**2
*exec*
An arbitrary amount of source code, this is how modules are compiled.
:func:`sys.displayhook` is *never* implicitly called.
*eval*
A single expression that returns a value. :func:`sys.displayhook` is *never*
implicitly called.
The ``code`` field is split into individual blocks each of which is valid for
execution in 'single' mode, and then:
- If there is only a single block: it is executed in 'single' mode.
- If there is more than one block:
* if the last one is a single line long, run all but the last in 'exec' mode
and the very last one in 'single' mode. This makes it easy to type simple
expressions at the end to see computed values.
* if the last one is no more than two lines long, run all but the last in
'exec' mode and the very last one in 'single' mode. This makes it easy to
type simple expressions at the end to see computed values. - otherwise
(last one is also multiline), run all in 'exec' mode
* otherwise (last one is also multiline), run all in 'exec' mode as a single
unit.