[Python-checkins] Fix "the the" in the idle docs. (GH-12549)

Miss Islington (bot) webhook-mailer at python.org
Tue Mar 26 00:52:42 EDT 2019


https://github.com/python/cpython/commit/eb94e5b3ec01a34af1087c4c85568b5d20325892
commit: eb94e5b3ec01a34af1087c4c85568b5d20325892
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-03-25T21:52:39-07:00
summary:

Fix "the the" in the idle docs. (GH-12549)

(cherry picked from commit 577277f669a6d5c626c142358a940a10d32813ff)

Co-authored-by: Benjamin Peterson <benjamin at python.org>

files:
M Doc/library/idle.rst

diff --git a/Doc/library/idle.rst b/Doc/library/idle.rst
index 8ef9e2eed534..11e137bf1092 100644
--- a/Doc/library/idle.rst
+++ b/Doc/library/idle.rst
@@ -356,8 +356,8 @@ Shell and Output windows also have the following.
 Go to file/line
    Same as in Debug menu.
 
-The Shell window also has an output squeezing facility explained in the
-the *Python Shell window* subsection below.
+The Shell window also has an output squeezing facility explained in the *Python
+Shell window* subsection below.
 
 Squeeze
    If the cursor is over an output line, squeeze all the output between
@@ -716,17 +716,15 @@ In contrast, some system text windows only keep the last n lines of output.
 A Windows console, for instance, keeps a user-settable 1 to 9999 lines,
 with 300 the default.
 
-A Tk Text widget, and hence IDLE's Shell, displays characters (codepoints)
-in the the BMP (Basic Multilingual Plane) subset of Unicode.
-Which characters are displayed with a proper glyph and which with a
-replacement box depends on the operating system and installed fonts.
-Tab characters cause the following text to begin after
-the next tab stop. (They occur every 8 'characters').
-Newline characters cause following text to appear on a new line.
-Other control characters are ignored or displayed as a space, box, or
-something else, depending on the operating system and font.
-(Moving the text cursor through such output with arrow keys may exhibit
-some surprising spacing behavior.)
+A Tk Text widget, and hence IDLE's Shell, displays characters (codepoints) in
+the BMP (Basic Multilingual Plane) subset of Unicode.  Which characters are
+displayed with a proper glyph and which with a replacement box depends on the
+operating system and installed fonts.  Tab characters cause the following text
+to begin after the next tab stop. (They occur every 8 'characters').  Newline
+characters cause following text to appear on a new line.  Other control
+characters are ignored or displayed as a space, box, or something else,
+depending on the operating system and font.  (Moving the text cursor through
+such output with arrow keys may exhibit some surprising spacing behavior.)
 
 .. code-block:: none
 



More information about the Python-checkins mailing list