summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorCheryl Sabella <cheryl.sabella@gmail.com>2019-06-18 02:24:10 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2019-06-18 02:24:10 (GMT)
commit201bc2d18b60adb05810d2a6ab396047bc527088 (patch)
tree1514619817f5282089691111547166b16cd4af56 /Misc
parent7fb3190bcf9872dca3d83a7f9e3e65cbce8be9ed (diff)
downloadcpython-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 'Misc')
-rw-r--r--Misc/NEWS.d/next/IDLE/2019-06-03-00-39-29.bpo-5680.VCQfOO.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2019-06-03-00-39-29.bpo-5680.VCQfOO.rst b/Misc/NEWS.d/next/IDLE/2019-06-03-00-39-29.bpo-5680.VCQfOO.rst
new file mode 100644
index 0000000..9fc6420
--- /dev/null
+++ b/Misc/NEWS.d/next/IDLE/2019-06-03-00-39-29.bpo-5680.VCQfOO.rst
@@ -0,0 +1,3 @@
+Add 'Run... Customized' to the Run menu to run a module with customized
+settings. Any 'command line arguments' entered are added to sys.argv.
+One can suppress the normal Shell main module restart.