mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
Merge Python 3.4.0rc1 release branch.
This commit is contained in:
commit
3f99504c08
22 changed files with 198 additions and 64 deletions
|
@ -111,6 +111,8 @@ class _SimpleBinder:
|
|||
except tkinter.TclError as e:
|
||||
if e.args[0] == APPLICATION_GONE:
|
||||
pass
|
||||
else:
|
||||
raise
|
||||
|
||||
# An int in range(1 << len(_modifiers)) represents a combination of modifiers
|
||||
# (if the least significent bit is on, _modifiers[0] is on, and so on).
|
||||
|
@ -244,6 +246,8 @@ class _ComplexBinder:
|
|||
except tkinter.TclError as e:
|
||||
if e.args[0] == APPLICATION_GONE:
|
||||
break
|
||||
else:
|
||||
raise
|
||||
|
||||
# define the list of event types to be handled by MultiEvent. the order is
|
||||
# compatible with the definition of event type constants.
|
||||
|
@ -411,6 +415,8 @@ def MultiCallCreator(widget):
|
|||
except tkinter.TclError as e:
|
||||
if e.args[0] == APPLICATION_GONE:
|
||||
break
|
||||
else:
|
||||
raise
|
||||
|
||||
_multicall_dict[widget] = MultiCall
|
||||
return MultiCall
|
||||
|
|
|
@ -875,4 +875,3 @@ What's New in IDLEfork 0.9 Alpha 1?
|
|||
--------------------------------------------------------------------
|
||||
Refer to HISTORY.txt for additional information on earlier releases.
|
||||
--------------------------------------------------------------------
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue