Skip to content

Doc: Fix duplicate words in idlelib #136089

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jun 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Lib/idlelib/configdialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ def on_fontlist_select(self, event):
self.font_name.set(font.lower())

def set_samples(self, event=None):
"""Update update both screen samples with the font settings.
"""Update both screen samples with the font settings.

Called on font initialization and change events.
Accesses font_name, font_size, and font_bold Variables.
Expand Down
2 changes: 1 addition & 1 deletion Lib/idlelib/debugger.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Debug user code with a GUI interface to a subclass of bdb.Bdb.

The Idb idb and Debugger gui instances each need a reference to each
The Idb instance 'idb' and Debugger instance 'gui' need references to each
other or to an rpc proxy for each other.

If IDLE is started with '-n', so that user code and idb both run in the
Expand Down
2 changes: 1 addition & 1 deletion Lib/idlelib/editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -1649,7 +1649,7 @@ def tokeneater(self, type, token, start, end, line,
self.finished = 1

def run(self):
"""Return 2 lines containing block opener and and indent.
"""Return 2 lines containing block opener and indent.

Either the indent line or both may be None.
"""
Expand Down
2 changes: 1 addition & 1 deletion Lib/idlelib/idle_test/htest.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@
'file': 'tree',
'kwds': {},
'msg': "The canvas is scrollable.\n"
"Click on folders up to to the lowest level."
"Click on folders up to the lowest level."
}

_undo_delegator_spec = {
Expand Down
1 change: 1 addition & 0 deletions Misc/ACKS
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,7 @@ Dean Draayer
Fred L. Drake, Jr.
Mehdi Drissi
Derk Drukker
Weilin Du
John DuBois
Paul Dubois
Jacques Ducasse
Expand Down
Loading