diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-03-05 17:33:48 -0800 |
---|---|---|
committer | Ned Deily <nad@python.org> | 2020-03-10 01:47:21 -0400 |
commit | 1e85e1af011d36b36a73b41abda8eb76ee4b44f7 (patch) | |
tree | 787c87600fad9af211e92bf79ac3b7cda7a881ac | |
parent | bpo-13487: Use sys.modules.copy() in inspect.getmodule() for thread safety. (... (diff) | |
download | cpython-1e85e1af011d36b36a73b41abda8eb76ee4b44f7.tar.gz cpython-1e85e1af011d36b36a73b41abda8eb76ee4b44f7.tar.bz2 cpython-1e85e1af011d36b36a73b41abda8eb76ee4b44f7.zip |
IDLE doc: improve Startup failure subsection. (GH-18771)
Eliminate repeat of 'Options', reported by Jules Lasne, and improve wording elsewhere.
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
(cherry picked from commit ce305d641074931e4e790f7a83e28f74910644e5)
Co-authored-by: Jules Lasne (jlasne) <jules.lasne@gmail.com>
-rw-r--r-- | Doc/library/idle.rst | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/Doc/library/idle.rst b/Doc/library/idle.rst index f15f46b788b..fd6e309567d 100644 --- a/Doc/library/idle.rst +++ b/Doc/library/idle.rst @@ -681,19 +681,22 @@ clash, or cannot or does not want to run as admin, it might be easiest to completely remove Python and start over. A zombie pythonw.exe process could be a problem. On Windows, use Task -Manager to detect and stop one. Sometimes a restart initiated by a program -crash or Keyboard Interrupt (control-C) may fail to connect. Dismissing -the error box or Restart Shell on the Shell menu may fix a temporary problem. +Manager to check for one and stop it if there is. Sometimes a restart +initiated by a program crash or Keyboard Interrupt (control-C) may fail +to connect. Dismissing the error box or using Restart Shell on the Shell +menu may fix a temporary problem. When IDLE first starts, it attempts to read user configuration files in ``~/.idlerc/`` (~ is one's home directory). If there is a problem, an error message should be displayed. Leaving aside random disk glitches, this can -be prevented by never editing the files by hand, using the configuration -dialog, under Options, instead Options. Once it happens, the solution may -be to delete one or more of the configuration files. +be prevented by never editing the files by hand. Instead, use the +configuration dialog, under Options. Once there is an error in a user +configuration file, the best solution may be to delete it and start over +with the settings dialog. If IDLE quits with no message, and it was not started from a console, try -starting from a console (``python -m idlelib``) and see if a message appears. +starting it from a console or terminal (``python -m idlelib``) and see if +this results in an error message. Running user code ^^^^^^^^^^^^^^^^^ |