diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2010-04-02 07:24:52 +0000 |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2010-04-02 07:24:52 +0000 |
commit | d630c04ab1ab35e2ec6eeeaba9bdcb9f8e730e78 (patch) | |
tree | f3dbe58315387ba5b3c26e7ed37d37b5ebf3d711 /Lib/idlelib/CodeContext.py | |
parent | f28dd0d1bfd85e5285894bfac54f6668d7217210 (diff) | |
download | cpython-git-d630c04ab1ab35e2ec6eeeaba9bdcb9f8e730e78.tar.gz |
#7092: Fix additional "-3" warnings in the idlelib package, and convert to absolute imports.
Diffstat (limited to 'Lib/idlelib/CodeContext.py')
-rw-r--r-- | Lib/idlelib/CodeContext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/CodeContext.py b/Lib/idlelib/CodeContext.py index 420ec339ca..2f6f737b67 100644 --- a/Lib/idlelib/CodeContext.py +++ b/Lib/idlelib/CodeContext.py @@ -11,9 +11,9 @@ not open blocks are not shown in the context hints pane. """ import Tkinter from Tkconstants import TOP, LEFT, X, W, SUNKEN -from configHandler import idleConf import re from sys import maxint as INFINITY +from idlelib.configHandler import idleConf BLOCKOPENERS = set(["class", "def", "elif", "else", "except", "finally", "for", "if", "try", "while", "with"]) |