commit | 8da6f1b66811f6cf680dd0bd5762ff051e42d034 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Tue Mar 06 11:52:33 2007 +0000 |
committer | Georg Brandl <georg@python.org> | Tue Mar 06 11:52:33 2007 +0000 |
tree | 3bdd8aa03990369760a4bae862b6c2a56ecef700 | |
parent | 0520e03d0fae6a25de8057eb63a4ca779e18fd14 [diff] [blame] |
Patch #1672481: fix bug in idlelib.MultiCall. (backport from rev. 54156)
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)