diff options
author | Larry Hastings <larry@hastings.org> | 2014-02-11 08:15:46 (GMT) |
---|---|---|
committer | Larry Hastings <larry@hastings.org> | 2014-02-11 08:15:46 (GMT) |
commit | 3f99504c08ebca685271c32289f8907bc456e1fc (patch) | |
tree | deb0b2d3284cec1323ad0da34f96107ea3f64576 /Lib/idlelib | |
parent | 4cce8f2f40cc15235f44b3a47fec0444ed75e9fe (diff) | |
parent | 06847d9c8c30715c077e083de1c511e399af75f1 (diff) | |
download | cpython-3f99504c08ebca685271c32289f8907bc456e1fc.zip cpython-3f99504c08ebca685271c32289f8907bc456e1fc.tar.gz cpython-3f99504c08ebca685271c32289f8907bc456e1fc.tar.bz2 |
Merge Python 3.4.0rc1 release branch.
Diffstat (limited to 'Lib/idlelib')
-rw-r--r-- | Lib/idlelib/MultiCall.py | 6 | ||||
-rw-r--r-- | Lib/idlelib/NEWS.txt | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/Lib/idlelib/MultiCall.py b/Lib/idlelib/MultiCall.py index 477db2e..25105dc 100644 --- a/Lib/idlelib/MultiCall.py +++ b/Lib/idlelib/MultiCall.py @@ -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 diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt index 478c183..953a38d 100644 --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -875,4 +875,3 @@ What's New in IDLEfork 0.9 Alpha 1? -------------------------------------------------------------------- Refer to HISTORY.txt for additional information on earlier releases. -------------------------------------------------------------------- - |