diff options
author | Cheryl Sabella <cheryl.sabella@gmail.com> | 2019-06-18 02:24:10 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2019-06-18 02:24:10 (GMT) |
commit | 201bc2d18b60adb05810d2a6ab396047bc527088 (patch) | |
tree | 1514619817f5282089691111547166b16cd4af56 /Doc/library/idle.rst | |
parent | 7fb3190bcf9872dca3d83a7f9e3e65cbce8be9ed (diff) | |
download | cpython-201bc2d18b60adb05810d2a6ab396047bc527088.zip cpython-201bc2d18b60adb05810d2a6ab396047bc527088.tar.gz cpython-201bc2d18b60adb05810d2a6ab396047bc527088.tar.bz2 |
bpo-5680: IDLE: Customize running a module (GH-13763)
The initialize options are 1) add command line options, which are appended to sys.argv as if passed on a real command line, and 2) skip the shell restart. The customization dialog is accessed by a new entry on the Run menu.
Diffstat (limited to 'Doc/library/idle.rst')
-rw-r--r-- | Doc/library/idle.rst | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/Doc/library/idle.rst b/Doc/library/idle.rst index d494c97..fb886a7 100644 --- a/Doc/library/idle.rst +++ b/Doc/library/idle.rst @@ -207,9 +207,13 @@ Strip trailing whitespace Run menu (Editor window only) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +.. _python-shell: + Python Shell Open or wake up the Python Shell window. +.. _check-module: + Check Module Check the syntax of the module currently open in the Editor window. If the module has not been saved IDLE will either prompt the user to save or @@ -217,8 +221,10 @@ Check Module there is a syntax error, the approximate location is indicated in the Editor window. +.. _run-module: + Run Module - Do Check Module (above). If no error, restart the shell to clean the + Do :ref:`Check Module <check-module>`. If no error, restart the shell to clean the environment, then execute the module. Output is displayed in the Shell window. Note that output requires use of ``print`` or ``write``. When execution is complete, the Shell retains focus and displays a prompt. @@ -226,6 +232,14 @@ Run Module This is similar to executing a file with ``python -i file`` at a command line. +.. _run-custom: + +Run... Customized + Same as :ref:`Run Module <run-module>`, but run the module with customized + settings. *Command Line Arguments* extend :data:`sys.argv` as if passed + on a command line. The module can be run in the Shell without restarting. + + Shell menu (Shell window only) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |