Kaydet (Commit) 9bc50561 authored tarafından Terry Jan Reedy's avatar Terry Jan Reedy

Delete a few unused names suggested by pyflakes.

üst 5b1b38cb
...@@ -2,9 +2,8 @@ ...@@ -2,9 +2,8 @@
After ToolTip.py, which uses ideas gleaned from PySol After ToolTip.py, which uses ideas gleaned from PySol
Used by the CallTips IDLE extension. Used by the CallTips IDLE extension.
""" """
from Tkinter import * from Tkinter import Toplevel, Label, LEFT, SOLID, TclError
HIDE_VIRTUAL_EVENT_NAME = "<<calltipwindow-hide>>" HIDE_VIRTUAL_EVENT_NAME = "<<calltipwindow-hide>>"
HIDE_SEQUENCES = ("<Key-Escape>", "<FocusOut>") HIDE_SEQUENCES = ("<Key-Escape>", "<FocusOut>")
...@@ -133,13 +132,16 @@ class CallTip: ...@@ -133,13 +132,16 @@ class CallTip:
return bool(self.tipwindow) return bool(self.tipwindow)
def _calltip_window(parent): def _calltip_window(parent): # htest #
import re
from Tkinter import Tk, Text, LEFT, BOTH
root = Tk() root = Tk()
root.title("Test calltips") root.title("Test calltips")
width, height, x, y = list(map(int, re.split('[x+]', parent.geometry()))) width, height, x, y = list(map(int, re.split('[x+]', parent.geometry())))
root.geometry("+%d+%d"%(x, y + 150)) root.geometry("+%d+%d"%(x, y + 150))
class MyEditWin: # comparenceptually an editor_window class MyEditWin: # conceptually an editor_window
def __init__(self): def __init__(self):
text = self.text = Text(root) text = self.text = Text(root)
text.pack(side=LEFT, fill=BOTH, expand=1) text.pack(side=LEFT, fill=BOTH, expand=1)
...@@ -161,7 +163,7 @@ def _calltip_window(parent): ...@@ -161,7 +163,7 @@ def _calltip_window(parent):
def calltip_hide(self, event): def calltip_hide(self, event):
self.calltip.hidetip() self.calltip.hidetip()
editwin = MyEditWin() MyEditWin()
if __name__=='__main__': if __name__=='__main__':
from idlelib.idle_test.htest import run from idlelib.idle_test.htest import run
......
...@@ -101,7 +101,7 @@ class ModuleBrowserTreeItem(TreeItem): ...@@ -101,7 +101,7 @@ class ModuleBrowserTreeItem(TreeItem):
return [] return []
try: try:
dict = pyclbr.readmodule_ex(name, [dir] + sys.path) dict = pyclbr.readmodule_ex(name, [dir] + sys.path)
except ImportError, msg: except ImportError:
return [] return []
items = [] items = []
self.classes = {} self.classes = {}
......
import os import os
import bdb import bdb
import types
from Tkinter import * from Tkinter import *
from idlelib.WindowList import ListedToplevel from idlelib.WindowList import ListedToplevel
from idlelib.ScrolledList import ScrolledList from idlelib.ScrolledList import ScrolledList
......
...@@ -20,7 +20,7 @@ configuration problem notification and resolution. ...@@ -20,7 +20,7 @@ configuration problem notification and resolution.
import os import os
import sys import sys
import string import string
from ConfigParser import ConfigParser, NoOptionError, NoSectionError from ConfigParser import ConfigParser
class InvalidConfigType(Exception): pass class InvalidConfigType(Exception): pass
class InvalidConfigSet(Exception): pass class InvalidConfigSet(Exception): pass
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment