Skip to content

Commit d794728

Browse files
authored
[3.7] bpo-39136: Fixed typos (GH-17720)
focusses -> focuses; follwing -> following; Excape -> Escape. (cherry picked from commit 6c7bb38)
1 parent eeebc44 commit d794728

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Doc/faq/programming.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1026,7 +1026,7 @@ That's a tough one, in general. First, here are a list of things to
10261026
remember before diving further:
10271027

10281028
* Performance characteristics vary across Python implementations. This FAQ
1029-
focusses on :term:`CPython`.
1029+
focuses on :term:`CPython`.
10301030
* Behaviour can vary across operating systems, especially when talking about
10311031
I/O or multi-threading.
10321032
* You should always find the hot spots in your program *before* attempting to

Lib/idlelib/NEWS.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Released on 2019-12-16?
66
bpo-38943: Fix autocomplete windows not always appearing on some
77
systems. Patch by Johnny Najera.
88

9-
bpo-38944: Excape key now closes IDLE completion windows. Patch by
9+
bpo-38944: Escape key now closes IDLE completion windows. Patch by
1010
Johnny Najera.
1111

1212
bpo-38862: 'Strip Trailing Whitespace' on the Format menu removes extra

Lib/tkinter/tix.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1890,7 +1890,7 @@ def size_column(self, index, **kw):
18901890
containing the current size setting of the given column. When
18911891
option-value pairs are given, the corresponding options of the
18921892
size setting of the given column are changed. Options may be one
1893-
of the follwing:
1893+
of the following:
18941894
pad0 pixels
18951895
Specifies the paddings to the left of a column.
18961896
pad1 pixels
@@ -1915,7 +1915,7 @@ def size_row(self, index, **kw):
19151915
When no option-value pair is given, this command returns a list con-
19161916
taining the current size setting of the given row . When option-value
19171917
pairs are given, the corresponding options of the size setting of the
1918-
given row are changed. Options may be one of the follwing:
1918+
given row are changed. Options may be one of the following:
19191919
pad0 pixels
19201920
Specifies the paddings to the top of a row.
19211921
pad1 pixels

0 commit comments

Comments
 (0)