[issue38661] Changes to tkinter result in (unexpected) widget map call return changes wrt. 3.7

2019-11-07 Thread Juliette Monsel
Change by Juliette Monsel : -- nosy: +j-4321-i ___ Python tracker <https://bugs.python.org/issue38661> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue31485] Tkinter widget.unbind(sequence, funcid) unbind all bindings

2017-09-15 Thread Juliette Monsel
New submission from Juliette Monsel: I am using python 3.6.2 with tk 8.6.7 in Linux and when I call widget.unbind(, funcid), it unbinds all bindings for , while I would expect it to unbind only funcid. Here is an example reproducing the problem: import tkinter as tk root = tk.Tk() def

[issue31485] Tkinter widget.unbind(sequence, funcid) unbind all bindings

2017-09-15 Thread Juliette Monsel
Juliette Monsel added the comment: I have found a workaround to unbind a single binding (inspired by https://mail.python.org/pipermail/tkinter-discuss/2012-May/003151.html): def unbind(widget, seq, funcid): bindings = {x.split()[1][3:]: x for x in widget.bind(seq).splitlines() if x.strip

[issue31485] Tkinter widget.unbind(sequence, funcid) unbind all bindings

2017-09-18 Thread Juliette Monsel
Juliette Monsel added the comment: I don't mind writing a patch and opening a pull request, however I don't know which corner cases I need to take into account. -- ___ Python tracker <https://bugs.python.o

[issue34829] Add missing selection_ methods to tkinter Spinbox

2018-09-28 Thread Juliette Monsel
New submission from Juliette Monsel : Though the text area of the tkinter Spinbox behaves like an Entry, the methods selection_from, selection_range, selection_present and selection_to have not been implemented. So for consistency with the Entry widget, I suggest to add them

[issue34829] Add missing selection_ methods to tkinter Spinbox

2018-09-28 Thread Juliette Monsel
Change by Juliette Monsel : -- keywords: +patch pull_requests: +9016 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue34829> ___ ___ Py

[issue34936] tkinter.Spinbox.selection_element() raises TclError

2018-10-08 Thread Juliette Monsel
New submission from Juliette Monsel : Spinbox.selection_element() raises `TclError: expected integer but got "none"` while it should return the currently selected element according to the docstring. I think this issue comes from the Spinbox.selection method which tries to convert

[issue34936] tkinter.Spinbox.selection_element() raises TclError

2018-10-08 Thread Juliette Monsel
Change by Juliette Monsel : -- keywords: +patch pull_requests: +9146 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue23831] tkinter canvas lacks of moveto method.

2018-10-08 Thread Juliette Monsel
Change by Juliette Monsel : -- nosy: +j-4321-i ___ Python tracker <https://bugs.python.org/issue23831> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue23831] tkinter canvas lacks of moveto method.

2018-10-09 Thread Juliette Monsel
Juliette Monsel added the comment: I am willing to create a pull request with the code provided in msg239745 , to add tests and a what's new entry. However I am not sure about how to acknowledge the contribution of msg239745

[issue23831] tkinter canvas lacks of moveto method.

2018-10-09 Thread Juliette Monsel
Change by Juliette Monsel : -- keywords: +patch pull_requests: +9155 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue34936] tkinter.Spinbox.selection_element() raises TclError

2018-10-18 Thread Juliette Monsel
Change by Juliette Monsel : -- pull_requests: +9304 ___ Python tracker <https://bugs.python.org/issue34936> ___ ___ Python-bugs-list mailing list Unsubscribe: