This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients terry.reedy
Date 2021-09-14.22:13:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1631657614.15.0.441102434851.issue45199@roundup.psfhosted.org>
In-reply-to
Content
The doc currently just says that the Search, File Search, and Search&Replace dialogs exist for the corresponding menu entries.
  Add a short section in "Editing and navigation" to say more.

1. Any selection becomes search target, except that S&R is buggy.
2. Search is only within lines.  .* and \n do not match \n even with RE.
3. [x]RE uses Python re module, not tcl re.  It applies to replace also.  So if target RE has capture groups, \1 (and \gname? test) in replacement works.(match.expand(repl))
4. Refer to re chapter and RegularExpression HOWTO.
History
Date User Action Args
2021-09-14 22:13:34terry.reedysetrecipients: + terry.reedy
2021-09-14 22:13:34terry.reedysetmessageid: <1631657614.15.0.441102434851.issue45199@roundup.psfhosted.org>
2021-09-14 22:13:34terry.reedylinkissue45199 messages
2021-09-14 22:13:33terry.reedycreate