diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2007-12-12 17:22:06 +0000 |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2007-12-12 17:22:06 +0000 |
commit | e61f0543dcd5d53b125a8dc337bc58d1e31eec14 (patch) | |
tree | 0e6050f0e3d60cd9b6ff069eb244a1b630943eff /Lib/idlelib/CodeContext.py | |
parent | edf88f7f204cefc9c9357ca0fe0d9ea3d2956084 (diff) | |
download | cpython-e61f0543dcd5d53b125a8dc337bc58d1e31eec14.tar.gz |
maxint->maxsize. Wouldn't import.
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 edeb099343..3ab6e47e53 100644 --- a/Lib/idlelib/CodeContext.py +++ b/Lib/idlelib/CodeContext.py @@ -12,7 +12,7 @@ not open blocks are not shown in the context hints pane. import Tkinter from Tkconstants import TOP, LEFT, X, W, SUNKEN import re -from sys import maxint as INFINITY +from sys import maxsize as INFINITY from idlelib.configHandler import idleConf BLOCKOPENERS = set(["class", "def", "elif", "else", "except", "finally", "for", |