This commit is contained in:
Benjamin Peterson 2013-04-03 22:38:00 -04:00
commit 4d34bae217
2 changed files with 3 additions and 0 deletions

View File

@ -123,6 +123,7 @@ class ReplaceDialog(SearchDialogBase):
text.undo_block_stop() text.undo_block_stop()
if first and last: if first and last:
self.show_hit(first, last) self.show_hit(first, last)
self.close()
def do_find(self, ok=0): def do_find(self, ok=0):
if not self.engine.getprog(): if not self.engine.getprog():

View File

@ -27,6 +27,8 @@ Core and Builtins
- Use the HTTPS PyPI url for upload, overriding any plain HTTP URL in pypirc. - 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 - Issue #16795: On the ast.arguments object, unify vararg with varargannotation
and kwarg and kwargannotation. Change the column offset of ast.Attribute to be and kwarg and kwargannotation. Change the column offset of ast.Attribute to be
at the attribute name. at the attribute name.