commit | d53d951c240fc070f368c335792a9923e1426c8a | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Tue Mar 06 11:52:24 2007 +0000 |
committer | Georg Brandl <georg@python.org> | Tue Mar 06 11:52:24 2007 +0000 |
tree | f02d0eeaa9344aec23155a060e02c5104583fa0b | |
parent | 3071a1aec949d33fdea2150784860e14a17f674f [diff] [blame] |
Patch #1672481: fix bug in idlelib.MultiCall.
diff --git a/Lib/idlelib/MultiCall.py b/Lib/idlelib/MultiCall.py index ea8b140..547df13 100644 --- a/Lib/idlelib/MultiCall.py +++ b/Lib/idlelib/MultiCall.py
@@ -349,6 +349,8 @@ triplets.append(triplet) def event_delete(self, virtual, *sequences): + if virtual not in self.__eventinfo: + return func, triplets = self.__eventinfo[virtual] for seq in sequences: triplet = _parse_sequence(seq)