From e26da7c03a714faa115fe6b708ef0730119aa4b3 Mon Sep 17 00:00:00 2001 From: Martin Panter Date: Thu, 2 Jun 2016 10:07:09 +0000 Subject: Issue #27171: Fix typos in documentation, comments, and test function names --- Lib/idlelib/AutoComplete.py | 2 +- Lib/idlelib/MultiCall.py | 2 +- Lib/idlelib/rpc.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'Lib/idlelib') diff --git a/Lib/idlelib/AutoComplete.py b/Lib/idlelib/AutoComplete.py index b9ec539e68..ff085d5c70 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 -- cgit v1.2.1