summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/rstrip.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/idlelib/rstrip.py')
-rw-r--r--Lib/idlelib/rstrip.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/idlelib/rstrip.py b/Lib/idlelib/rstrip.py
index 2ce3c7e..18c86f9 100644
--- a/Lib/idlelib/rstrip.py
+++ b/Lib/idlelib/rstrip.py
@@ -2,12 +2,8 @@
class RstripExtension:
- menudefs = [
- ('format', [None, ('Strip trailing whitespace', '<<do-rstrip>>'), ] ), ]
-
def __init__(self, editwin):
self.editwin = editwin
- self.editwin.text.bind("<<do-rstrip>>", self.do_rstrip)
def do_rstrip(self, event=None):