Remove usage of sets module (patch #1500609).

This commit is contained in:
Georg Brandl 2006-07-17 13:23:46 +00:00
parent 83fa22f564
commit 7b71bf3872
4 changed files with 6 additions and 9 deletions

View file

@ -11,11 +11,10 @@ not open blocks are not shown in the context hints pane.
"""
import Tkinter
from configHandler import idleConf
from sets import Set
import re
from sys import maxint as INFINITY
BLOCKOPENERS = Set(["class", "def", "elif", "else", "except", "finally", "for",
BLOCKOPENERS = set(["class", "def", "elif", "else", "except", "finally", "for",
"if", "try", "while"])
UPDATEINTERVAL = 100 # millisec
FONTUPDATEINTERVAL = 1000 # millisec