diff options
author | Roger Serwy <roger.serwy@gmail.com> | 2013-03-31 21:11:51 (GMT) |
---|---|---|
committer | Roger Serwy <roger.serwy@gmail.com> | 2013-03-31 21:11:51 (GMT) |
commit | e268196fb0f1b0b0e10af49907a6356db1527d7b (patch) | |
tree | 65c92dec0930cca7148b6036c1172b58aec07275 | |
parent | 7faf70512a81b30f09914602b6083cd83f6bf38f (diff) | |
parent | 6d5bfad54595dca63df93d7d6e0122226557ece8 (diff) | |
download | cpython-e268196fb0f1b0b0e10af49907a6356db1527d7b.zip cpython-e268196fb0f1b0b0e10af49907a6356db1527d7b.tar.gz cpython-e268196fb0f1b0b0e10af49907a6356db1527d7b.tar.bz2 |
Merge heads.
-rw-r--r-- | Lib/idlelib/MultiCall.py | 5 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/Lib/idlelib/MultiCall.py b/Lib/idlelib/MultiCall.py index 47f402d..64729ea 100644 --- a/Lib/idlelib/MultiCall.py +++ b/Lib/idlelib/MultiCall.py @@ -170,8 +170,9 @@ class _ComplexBinder: break ishandlerrunning[:] = [] # Call all functions in doafterhandler and remove them from list - while doafterhandler: - doafterhandler.pop()() + for f in doafterhandler: + f() + doafterhandler[:] = [] if r: return r return handler @@ -297,6 +297,9 @@ Core and Builtins Library ------- +- Issue #8900: Using keyboard shortcuts in IDLE to open a file no longer + raises an exception. + - Issue #6649: Fixed missing exit status in IDLE. Patch by Guilherme Polo. - Issue #17435: threading.Timer's __init__ method no longer uses mutable |