From 7382f0c50e144bc0d9dee77336a7edbefcb0afbd 2019-11-25 17:40:52 From: anatoly techtonik Date: 2019-11-25 17:40:52 Subject: [PATCH] Fill in some missing words --- diff --git a/docs/source/development/execution.rst b/docs/source/development/execution.rst index 817bfd5..73e386d 100644 --- a/docs/source/development/execution.rst +++ b/docs/source/development/execution.rst @@ -23,11 +23,11 @@ Running user ``code`` ===================== First, the ``code`` cell is transformed to expand ``%magic`` and ``!system`` -by ``IPython.core.inputtransformer2``. Then is being compiled using standard -Python :func:`compile` function and executed. +commands by ``IPython.core.inputtransformer2``. Then expanded cell is compiled +using standard Python :func:`compile` function and executed. -Not specific to IPython, all Python code can be compiled in one of three modes -(see ``mode`` argument to the standard :func:`compile` function): +Python :func:`compile` function provides ``mode`` argument to select one +of three ways of compiling code: *single* Valid for a single interactive statement (though the source can contain