diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2017-08-07 18:23:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-07 18:23:07 (GMT) |
commit | b61de2d46596ac00dcf2d33bbce2023d0bf4207b (patch) | |
tree | 63179bddda3b8612fcf684e382c1bae368b391e7 /Lib/idlelib | |
parent | 57e836cb41656ac23042886db6b5985c036a7ce2 (diff) | |
download | cpython-b61de2d46596ac00dcf2d33bbce2023d0bf4207b.zip cpython-b61de2d46596ac00dcf2d33bbce2023d0bf4207b.tar.gz cpython-b61de2d46596ac00dcf2d33bbce2023d0bf4207b.tar.bz2 |
[3.6] bpo-29910: IDLE - revert `break`s that disabled calltip close. (GH-2997) (#3017)
(cherry picked from commit 8922587)
Diffstat (limited to 'Lib/idlelib')
-rw-r--r-- | Lib/idlelib/parenmatch.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/idlelib/parenmatch.py b/Lib/idlelib/parenmatch.py index c15cb81..7f25880 100644 --- a/Lib/idlelib/parenmatch.py +++ b/Lib/idlelib/parenmatch.py @@ -104,18 +104,18 @@ class ParenMatch: # If user bound non-closer to <<paren-closed>>, quit. closer = self.text.get("insert-1c") if closer not in _openers: - return "break" + return hp = HyperParser(self.editwin, "insert-1c") if not hp.is_in_code(): - return "break" + return indices = hp.get_surrounding_brackets(_openers[closer], True) if indices is None: self.bell() - return "break" + return self.activate_restore() self.create_tag(indices) self.set_timeout() - return "break" + return def restore_event(self, event=None): "Remove effect of doing match." |