diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2007-12-12 17:22:06 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2007-12-12 17:22:06 (GMT) |
commit | 3536a5c09c8e8fb248ac7ab89a45d75e9f91ea30 (patch) | |
tree | a49c3343c4d9079979e05a4ec050c9278a0d8162 /Lib | |
parent | 79bbbbc37576861e8dcbcd1b2d777b2a3cc8403f (diff) | |
download | cpython-3536a5c09c8e8fb248ac7ab89a45d75e9f91ea30.zip cpython-3536a5c09c8e8fb248ac7ab89a45d75e9f91ea30.tar.gz cpython-3536a5c09c8e8fb248ac7ab89a45d75e9f91ea30.tar.bz2 |
maxint->maxsize. Wouldn't import.
Diffstat (limited to 'Lib')
-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 edeb099..3ab6e47 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", |