From 5acaad0b3033fde6f21de6ac73681cd6cf64b1f7 Mon Sep 17 00:00:00 2001
From: "Miss Islington (bot)"
<31488909+miss-islington@users.noreply.github.com>
Date: Wed, 26 Jan 2022 19:55:25 -0800
Subject: [PATCH] bpo-45296: Clarify close, quit, and exit in IDLE (GH-30936)
(GH-30944)
In the File menu, 'Close' and 'Exit' are now 'Close Window' (the current
one) and 'Exit' is now 'Exit IDLE' (by closing all windows).
In Shell, 'quit()' and 'exit()' mean 'close Shell'.
If there are no other windows, this also exits IDLE.
(cherry picked from commit fcde0bc10ddd836b62d0a8e893d80b8c55e0ba3f)
Co-authored-by: Terry Jan Reedy
Co-authored-by: Terry Jan Reedy
---
Doc/library/idle.rst | 10 ++++++----
Lib/idlelib/help.html | 20 ++++++++++---------
Lib/idlelib/mainmenu.py | 4 ++--
.../2022-01-26-19-33-55.bpo-45296.LzZKdU.rst | 4 ++++
4 files changed, 23 insertions(+), 15 deletions(-)
create mode 100644 Misc/NEWS.d/next/IDLE/2022-01-26-19-33-55.bpo-45296.LzZKdU.rst
diff --git a/Doc/library/idle.rst b/Doc/library/idle.rst
index d740973af91..d6021042c61 100644
--- a/Doc/library/idle.rst
+++ b/Doc/library/idle.rst
@@ -96,11 +96,13 @@ Save Copy As...
Print Window
Print the current window to the default printer.
-Close
- Close the current window (ask to save if unsaved).
+Close Window
+ Close the current window (if an unsaved editor, ask to save; if an unsaved
+ Shell, ask to quit execution). Calling ``exit()`` or ``close()`` in the Shell
+ window also closes Shell. If this is the only window, also exit IDLE.
-Exit
- Close all windows and quit IDLE (ask to save unsaved windows).
+Exit IDLE
+ Close all windows and quit IDLE (ask to save unsaved edit windows).
Edit menu (Shell and Editor)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
diff --git a/Lib/idlelib/help.html b/Lib/idlelib/help.html
index 2468afa7148..41626ec5abb 100644
--- a/Lib/idlelib/help.html
+++ b/Lib/idlelib/help.html
@@ -5,7 +5,7 @@
- IDLE — Python 3.11.0a0 documentation
+ IDLE — Python 3.11.0a4 documentation
@@ -18,7 +18,7 @@
@@ -71,7 +71,7 @@
Close the current window (ask to save if unsaved).
+
Close Window
Close the current window (if an unsaved editor, ask to save; if an unsaved
+Shell, ask to quit execution). Calling exit() or close() in the Shell
+window also closes Shell. If this is the only window, also exit IDLE.
-
Exit
Close all windows and quit IDLE (ask to save unsaved windows).
+
Exit IDLE
Close all windows and quit IDLE (ask to save unsaved edit windows).