diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2006-07-23 04:19:49 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2006-07-23 04:19:49 (GMT) |
commit | c6bacd5606cbf3f76ae7e116e425a61d291c68fc (patch) | |
tree | c48d302bad1ac04cec1c8bf691f7810f5ab42b7d /Lib | |
parent | 7802af426eee29071b9aaa23297119ca71d091f9 (diff) | |
download | cpython-c6bacd5606cbf3f76ae7e116e425a61d291c68fc.zip cpython-c6bacd5606cbf3f76ae7e116e425a61d291c68fc.tar.gz cpython-c6bacd5606cbf3f76ae7e116e425a61d291c68fc.tar.bz2 |
Tooltips failed on new-syle class __init__ args. Bug 1027566 Loren Guthrie
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/idlelib/CallTips.py | 2 | ||||
-rw-r--r-- | Lib/idlelib/NEWS.txt | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Lib/idlelib/CallTips.py b/Lib/idlelib/CallTips.py index 47a1d55..997eb13 100644 --- a/Lib/idlelib/CallTips.py +++ b/Lib/idlelib/CallTips.py @@ -127,7 +127,7 @@ def get_arg_text(ob): argText = "" if ob is not None: argOffset = 0 - if type(ob)==types.ClassType: + if type(ob) in (types.ClassType, types.TypeType): # Look for the highest __init__ in the class chain. fob = _find_constructor(ob) if fob is None: diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt index 4dc2505..5ea5b0e 100644 --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -3,6 +3,8 @@ What's New in IDLE 1.2c1? *Release date: XX-XXX-2006* +- Tooltips failed on new-syle class __init__ args. Bug 1027566 Loren Guthrie + - Avoid occasional failure to detect closing paren properly. Patch 1407280 Tal Einat |