[Python-checkins] (no subject)

Stéphane Wirtel webhook-mailer at python.org
Thu Sep 12 09:19:10 EDT 2019




To: python-checkins at python.org
Subject: Doc: Add -m reference in context of code execution (GH-16045)
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0

https://github.com/python/cpython/commit/a45b0efdeaf27c3f8a630fb8c3670df6f0d4=
2d20
commit: a45b0efdeaf27c3f8a630fb8c3670df6f0d42d20
branch: master
author: Julien Palard <julien at palard.fr>
committer: St=C3=A9phane Wirtel <stephane at wirtel.be>
date: 2019-09-12T14:19:06+01:00
summary:

Doc: Add -m reference in context of code execution (GH-16045)

files:
M Doc/reference/executionmodel.rst

diff --git a/Doc/reference/executionmodel.rst b/Doc/reference/executionmodel.=
rst
index 49cb86b56084..55ac01b6a844 100644
--- a/Doc/reference/executionmodel.rst
+++ b/Doc/reference/executionmodel.rst
@@ -22,7 +22,9 @@ The following are blocks: a module, a function body, and a =
class definition.
 Each command typed interactively is a block.  A script file (a file given as
 standard input to the interpreter or specified as a command line argument to=
 the
 interpreter) is a code block.  A script command (a command specified on the
-interpreter command line with the :option:`-c` option) is a code block.  The=
 string
+interpreter command line with the :option:`-c` option) is a code block.
+A module run as a top level script (as module ``__main__``) from the command
+line using a :option:`-m` argument is also a code block. The string
 argument passed to the built-in functions :func:`eval` and :func:`exec` is a
 code block.
=20



More information about the Python-checkins mailing list