We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
python
Learn more about funding links in repositories.
Report abuse
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
# current tkinter/__init__.py class Text(...): [...] def search(self, pattern, index, stopindex=None, forwards=None, backwards=None, exact=None, regexp=None, nocase=None, count=None, elide=None): [...]
The current tkinter implementation of the tkinter.Text.search method misses use of tcl options: -nolinestop -all -overlap -strictlimits
tkinter.Text.search
Is there any reason on why it is not inside the CPython implementation?
3.13
Windows
The text was updated successfully, but these errors were encountered:
I'll see if I can make a pr
Sorry, something went wrong.
Almost done, I have to write unittests.
is currently avalible at https://github.com/sharktide/cpython/tree/patch-130693
Successfully merging a pull request may close this issue.
Bug report
Bug description:
The current tkinter implementation of the
tkinter.Text.search
method misses use of tcl options:-nolinestop
-all
-overlap
-strictlimits
Is there any reason on why it is not inside the CPython implementation?
CPython versions tested on:
3.13
Operating systems tested on:
Windows
Linked PRs
The text was updated successfully, but these errors were encountered: