diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-06-18 02:47:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-18 02:47:55 (GMT) |
commit | ae526ee320d3feabba0aa4dffa9d52e39f8941dc (patch) | |
tree | 0c46a5ef7fbbeb8077785d454493054dd886f279 /Misc | |
parent | f29a5770c2448c5ffb9281357c17073fd551d4fc (diff) | |
download | cpython-ae526ee320d3feabba0aa4dffa9d52e39f8941dc.zip cpython-ae526ee320d3feabba0aa4dffa9d52e39f8941dc.tar.gz cpython-ae526ee320d3feabba0aa4dffa9d52e39f8941dc.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.
(cherry picked from commit 201bc2d18b60adb05810d2a6ab396047bc527088)
Co-authored-by: Cheryl Sabella <cheryl.sabella@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/IDLE/2019-06-03-00-39-29.bpo-5680.VCQfOO.rst | 3 |
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. |