mirror of
https://github.com/python/cpython.git
synced 2025-11-25 21:11:09 +00:00
bpo-33904: In IDLE's rstrip, rename class RstripExtension as Rstrip (GH-7811)
This commit is contained in:
parent
9af1836664
commit
9bb92235f6
4 changed files with 6 additions and 5 deletions
|
|
@ -58,7 +58,7 @@ class EditorWindow(object):
|
|||
from idlelib.codecontext import CodeContext
|
||||
from idlelib.paragraph import FormatParagraph
|
||||
from idlelib.parenmatch import ParenMatch
|
||||
from idlelib.rstrip import RstripExtension
|
||||
from idlelib.rstrip import Rstrip
|
||||
from idlelib.zoomheight import ZoomHeight
|
||||
|
||||
filesystemencoding = sys.getfilesystemencoding() # for file names
|
||||
|
|
@ -310,7 +310,7 @@ class EditorWindow(object):
|
|||
scriptbinding = ScriptBinding(self)
|
||||
text.bind("<<check-module>>", scriptbinding.check_module_event)
|
||||
text.bind("<<run-module>>", scriptbinding.run_module_event)
|
||||
text.bind("<<do-rstrip>>", self.RstripExtension(self).do_rstrip)
|
||||
text.bind("<<do-rstrip>>", self.Rstrip(self).do_rstrip)
|
||||
ctip = self.Calltip(self)
|
||||
text.bind("<<try-open-calltip>>", ctip.try_open_calltip_event)
|
||||
#refresh-calltip must come after paren-closed to work right
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue