Doc: Fix duplicate words in idlelib (#136089)

This commit is contained in:
Weilin Du 2025-06-29 14:47:38 +08:00 committed by GitHub
parent 5334732f9c
commit f04d2b8819
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 5 additions and 4 deletions

View file

@ -435,7 +435,7 @@ class FontPage(Frame):
self.font_name.set(font.lower()) self.font_name.set(font.lower())
def set_samples(self, event=None): 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. Called on font initialization and change events.
Accesses font_name, font_size, and font_bold Variables. Accesses font_name, font_size, and font_bold Variables.

View file

@ -1,6 +1,6 @@
"""Debug user code with a GUI interface to a subclass of bdb.Bdb. """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. 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 If IDLE is started with '-n', so that user code and idb both run in the

View file

@ -1649,7 +1649,7 @@ class IndentSearcher:
self.finished = 1 self.finished = 1
def run(self): 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. Either the indent line or both may be None.
""" """

View file

@ -337,7 +337,7 @@ _tree_widget_spec = {
'file': 'tree', 'file': 'tree',
'kwds': {}, 'kwds': {},
'msg': "The canvas is scrollable.\n" '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 = { _undo_delegator_spec = {

View file

@ -478,6 +478,7 @@ Dean Draayer
Fred L. Drake, Jr. Fred L. Drake, Jr.
Mehdi Drissi Mehdi Drissi
Derk Drukker Derk Drukker
Weilin Du
John DuBois John DuBois
Paul Dubois Paul Dubois
Jacques Ducasse Jacques Ducasse