mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
#8900: merge with 3.3.
This commit is contained in:
commit
6d5bfad545
2 changed files with 6 additions and 2 deletions
|
@ -170,8 +170,9 @@ class _ComplexBinder:
|
||||||
break
|
break
|
||||||
ishandlerrunning[:] = []
|
ishandlerrunning[:] = []
|
||||||
# Call all functions in doafterhandler and remove them from list
|
# Call all functions in doafterhandler and remove them from list
|
||||||
while doafterhandler:
|
for f in doafterhandler:
|
||||||
doafterhandler.pop()()
|
f()
|
||||||
|
doafterhandler[:] = []
|
||||||
if r:
|
if r:
|
||||||
return r
|
return r
|
||||||
return handler
|
return handler
|
||||||
|
|
|
@ -297,6 +297,9 @@ Core and Builtins
|
||||||
Library
|
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 #6649: Fixed missing exit status in IDLE. Patch by Guilherme Polo.
|
||||||
|
|
||||||
- Issue #17435: threading.Timer's __init__ method no longer uses mutable
|
- Issue #17435: threading.Timer's __init__ method no longer uses mutable
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue