summaryrefslogtreecommitdiff
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-06-02 10:11:18 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-06-02 10:11:18 +0000
commit0b7d84de6b3ec5264392e3bf7d3900b003cbeffd (patch)
tree12987b101c150c8f44514c5a1421f3fa168c82d4 /Lib/idlelib
parentfa6de5cddf9cd2029b7c2a0fe8b4c5ef27a1273e (diff)
parente26da7c03a714faa115fe6b708ef0730119aa4b3 (diff)
downloadcpython-git-0b7d84de6b3ec5264392e3bf7d3900b003cbeffd.tar.gz
Issue #27171: Merge typo fixes from 3.5
Diffstat (limited to 'Lib/idlelib')
-rw-r--r--Lib/idlelib/autocomplete.py2
-rw-r--r--Lib/idlelib/multicall.py2
-rw-r--r--Lib/idlelib/rpc.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/Lib/idlelib/autocomplete.py b/Lib/idlelib/autocomplete.py
index 6e75f67947..5ba8dc5dd5 100644
--- a/Lib/idlelib/autocomplete.py
+++ b/Lib/idlelib/autocomplete.py
@@ -1,6 +1,6 @@
"""autocomplete.py - An IDLE extension for automatically completing names.
-This extension can complete either attribute names of file names. It can pop
+This extension can complete either attribute names or file names. It can pop
a window with all available names, for the user to select from.
"""
import os
diff --git a/Lib/idlelib/multicall.py b/Lib/idlelib/multicall.py
index 251a84d083..8462854921 100644
--- a/Lib/idlelib/multicall.py
+++ b/Lib/idlelib/multicall.py
@@ -111,7 +111,7 @@ class _SimpleBinder:
raise
# An int in range(1 << len(_modifiers)) represents a combination of modifiers
-# (if the least significent bit is on, _modifiers[0] is on, and so on).
+# (if the least significant bit is on, _modifiers[0] is on, and so on).
# _state_subsets gives for each combination of modifiers, or *state*,
# a list of the states which are a subset of it. This list is ordered by the
# number of modifiers is the state - the most specific state comes first.
diff --git a/Lib/idlelib/rpc.py b/Lib/idlelib/rpc.py
index aa33041e7b..48105f2aa1 100644
--- a/Lib/idlelib/rpc.py
+++ b/Lib/idlelib/rpc.py
@@ -1,4 +1,4 @@
-"""RPC Implemention, originally written for the Python Idle IDE
+"""RPC Implementation, originally written for the Python Idle IDE
For security reasons, GvR requested that Idle's Python execution server process
connect to the Idle process, which listens for the connection. Since Idle has