diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-04-04 02:38:00 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-04-04 02:38:00 (GMT) |
commit | 4d34bae21751165ba322d6f9fb8647ae43ed6e4a (patch) | |
tree | ae1afb2262f725e490598c909e4eec0e801bb1c1 | |
parent | effbdeedb5235b197a4fae90f7b03377fc252a36 (diff) | |
parent | cf658c283346497106952bba9bc5c49fbab22ac0 (diff) | |
download | cpython-4d34bae21751165ba322d6f9fb8647ae43ed6e4a.zip cpython-4d34bae21751165ba322d6f9fb8647ae43ed6e4a.tar.gz cpython-4d34bae21751165ba322d6f9fb8647ae43ed6e4a.tar.bz2 |
merge 3.3 (#17625)
-rw-r--r-- | Lib/idlelib/ReplaceDialog.py | 1 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/Lib/idlelib/ReplaceDialog.py b/Lib/idlelib/ReplaceDialog.py index e5a1371..e73f2c5 100644 --- a/Lib/idlelib/ReplaceDialog.py +++ b/Lib/idlelib/ReplaceDialog.py @@ -123,6 +123,7 @@ class ReplaceDialog(SearchDialogBase): text.undo_block_stop() if first and last: self.show_hit(first, last) + self.close() def do_find(self, ok=0): if not self.engine.getprog(): @@ -27,6 +27,8 @@ Core and Builtins - Use the HTTPS PyPI url for upload, overriding any plain HTTP URL in pypirc. +- Issue #17625: In IDLE, close the replace dialog after it is used. + - Issue #16795: On the ast.arguments object, unify vararg with varargannotation and kwarg and kwargannotation. Change the column offset of ast.Attribute to be at the attribute name. |