summaryrefslogtreecommitdiff
path: root/Lib
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-06-02 21:39:32 -0700
committerGitHub <noreply@github.com>2019-06-02 21:39:32 -0700
commitab4d42a33e204026cc3eb3a15de54a14f224fdbb (patch)
tree425c226f34be85bef9c30a6b8f2745958cb84cdd /Lib
parent4a941e69822c042c1ef41ad34e89a6acd436490b (diff)
downloadcpython-git-ab4d42a33e204026cc3eb3a15de54a14f224fdbb.tar.gz
IDLE: Fix typos in docs and comments (GH-13749)
(cherry picked from commit d9677f36fe486e86bb86f2cd59cb7fc3804bdac1) Co-authored-by: Xtreak <tir.karthi@gmail.com>
Diffstat (limited to 'Lib')
-rw-r--r--Lib/idlelib/config.py2
-rw-r--r--Lib/idlelib/configdialog.py2
-rw-r--r--Lib/idlelib/delegator.py2
-rw-r--r--Lib/idlelib/editor.py2
-rw-r--r--Lib/idlelib/idle_test/htest.py2
-rw-r--r--Lib/idlelib/idle_test/mock_tk.py2
-rw-r--r--Lib/idlelib/idle_test/test_pyparse.py2
-rw-r--r--Lib/idlelib/search.py2
-rw-r--r--Lib/idlelib/searchbase.py2
-rw-r--r--Lib/idlelib/squeezer.py2
-rw-r--r--Lib/idlelib/undo.py2
11 files changed, 11 insertions, 11 deletions
diff --git a/Lib/idlelib/config.py b/Lib/idlelib/config.py
index aa94d6535b..12113c19c0 100644
--- a/Lib/idlelib/config.py
+++ b/Lib/idlelib/config.py
@@ -12,7 +12,7 @@ database keys are tuples (config-type, section, item). As implemented,
there are separate dicts for default and user values. Each has
config-type keys 'main', 'extensions', 'highlight', and 'keys'. The
value for each key is a ConfigParser instance that maps section and item
-to values. For 'main' and 'extenstons', user values override
+to values. For 'main' and 'extensions', user values override
default values. For 'highlight' and 'keys', user sections augment the
default sections (and must, therefore, have distinct names).
diff --git a/Lib/idlelib/configdialog.py b/Lib/idlelib/configdialog.py
index 4aaec1321f..807ff60413 100644
--- a/Lib/idlelib/configdialog.py
+++ b/Lib/idlelib/configdialog.py
@@ -199,7 +199,7 @@ class ConfigDialog(Toplevel):
def help(self):
"""Create textview for config dialog help.
- Attrbutes accessed:
+ Attributes accessed:
note
Methods:
diff --git a/Lib/idlelib/delegator.py b/Lib/idlelib/delegator.py
index dc2a1aaeea..55c95da853 100644
--- a/Lib/idlelib/delegator.py
+++ b/Lib/idlelib/delegator.py
@@ -14,7 +14,7 @@ class Delegator:
def resetcache(self):
"Removes added attributes while leaving original attributes."
- # Function is really about resetting delagator dict
+ # Function is really about resetting delegator dict
# to original state. Cache is just a means
for key in self.__cache:
try:
diff --git a/Lib/idlelib/editor.py b/Lib/idlelib/editor.py
index 89b7239a96..a6674728cd 100644
--- a/Lib/idlelib/editor.py
+++ b/Lib/idlelib/editor.py
@@ -315,7 +315,7 @@ class EditorWindow(object):
self.CodeContext(self).toggle_code_context_event)
def _filename_to_unicode(self, filename):
- """Return filename as BMP unicode so diplayable in Tk."""
+ """Return filename as BMP unicode so displayable in Tk."""
# Decode bytes to unicode.
if isinstance(filename, bytes):
try:
diff --git a/Lib/idlelib/idle_test/htest.py b/Lib/idlelib/idle_test/htest.py
index 429081f7ef..6e3398ed0b 100644
--- a/Lib/idlelib/idle_test/htest.py
+++ b/Lib/idlelib/idle_test/htest.py
@@ -12,7 +12,7 @@ or function) whose .__name__ attribute is also X (the usual situation).
The first parameter of X must be 'parent'. When called, the parent
argument will be the root window. X must create a child Toplevel
window (or subclass thereof). The Toplevel may be a test widget or
-dialog, in which case the callable is the corresonding class. Or the
+dialog, in which case the callable is the corresponding class. Or the
Toplevel may contain the widget to be tested or set up a context in
which a test widget is invoked. In this latter case, the callable is a
wrapper function that sets up the Toplevel and other objects. Wrapper
diff --git a/Lib/idlelib/idle_test/mock_tk.py b/Lib/idlelib/idle_test/mock_tk.py
index a54f51f194..576f7d5d60 100644
--- a/Lib/idlelib/idle_test/mock_tk.py
+++ b/Lib/idlelib/idle_test/mock_tk.py
@@ -37,7 +37,7 @@ class Mbox_func:
"""Generic mock for messagebox functions, which all have the same signature.
Instead of displaying a message box, the mock's call method saves the
- arguments as instance attributes, which test functions can then examime.
+ arguments as instance attributes, which test functions can then examine.
The test can set the result returned to ask function
"""
def __init__(self, result=None):
diff --git a/Lib/idlelib/idle_test/test_pyparse.py b/Lib/idlelib/idle_test/test_pyparse.py
index 0534301b36..479b84a216 100644
--- a/Lib/idlelib/idle_test/test_pyparse.py
+++ b/Lib/idlelib/idle_test/test_pyparse.py
@@ -160,7 +160,7 @@ class PyParseTest(unittest.TestCase):
TestInfo('\n def function1(self, a,\n', [0, 1, 2], BRACKET),
TestInfo('())\n', [0, 1], NONE), # Extra closer.
TestInfo(')(\n', [0, 1], BRACKET), # Extra closer.
- # For the mismatched example, it doesn't look like contination.
+ # For the mismatched example, it doesn't look like continuation.
TestInfo('{)(]\n', [0, 1], NONE), # Mismatched.
)
diff --git a/Lib/idlelib/search.py b/Lib/idlelib/search.py
index 5bbe9d6b5d..b35f3b59c3 100644
--- a/Lib/idlelib/search.py
+++ b/Lib/idlelib/search.py
@@ -80,7 +80,7 @@ class SearchDialog(SearchDialogBase):
If no search was previously run, open a new search dialog. In
this case, no search is done.
- If a seach was previously run, the search dialog won't be
+ If a search was previously run, the search dialog won't be
shown and the options from the previous search (including the
search pattern) will be used to find the next occurrence
of the pattern. Next is relative based on direction.
diff --git a/Lib/idlelib/searchbase.py b/Lib/idlelib/searchbase.py
index 74ba853851..4ed94f186b 100644
--- a/Lib/idlelib/searchbase.py
+++ b/Lib/idlelib/searchbase.py
@@ -36,7 +36,7 @@ class SearchDialogBase:
text (Text searched): set in open(), only used in subclasses().
ent (ry): created in make_entry() called from create_entry().
row (of grid): 0 in create_widgets(), +1 in make_entry/frame().
- default_command: set in subclasses, used in create_widgers().
+ default_command: set in subclasses, used in create_widgets().
title (of dialog): class attribute, override in subclasses.
icon (of dialog): ditto, use unclear if cannot minimize dialog.
diff --git a/Lib/idlelib/squeezer.py b/Lib/idlelib/squeezer.py
index 869498d753..032401f2ab 100644
--- a/Lib/idlelib/squeezer.py
+++ b/Lib/idlelib/squeezer.py
@@ -6,7 +6,7 @@ Worse, this can cause IDLE to become very slow, even to the point of being
completely unusable.
This extension will automatically replace long texts with a small button.
-Double-cliking this button will remove it and insert the original text instead.
+Double-clicking this button will remove it and insert the original text instead.
Middle-clicking will copy the text to the clipboard. Right-clicking will open
the text in a separate viewing window.
diff --git a/Lib/idlelib/undo.py b/Lib/idlelib/undo.py
index f048994b7d..85ecffecb4 100644
--- a/Lib/idlelib/undo.py
+++ b/Lib/idlelib/undo.py
@@ -2,7 +2,7 @@ import string
from idlelib.delegator import Delegator
-# tkintter import not needed because module does not create widgets,
+# tkinter import not needed because module does not create widgets,
# although many methods operate on text widget arguments.
#$ event <<redo>>