Change by Juliette Monsel :
--
nosy: +j-4321-i
___
Python tracker
<https://bugs.python.org/issue38661>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
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
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
Change by Juliette Monsel :
--
keywords: +patch
pull_requests: +9016
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue34829>
___
___
Py
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
Change by Juliette Monsel :
--
keywords: +patch
pull_requests: +9146
stage: needs patch -> patch review
___
Python tracker
<https://bugs.python.org/issu
Change by Juliette Monsel :
--
nosy: +j-4321-i
___
Python tracker
<https://bugs.python.org/issue23831>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Change by Juliette Monsel :
--
keywords: +patch
pull_requests: +9155
stage: needs patch -> patch review
___
Python tracker
<https://bugs.python.org/issu
Change by Juliette Monsel :
--
pull_requests: +9304
___
Python tracker
<https://bugs.python.org/issue34936>
___
___
Python-bugs-list mailing list
Unsubscribe:
12 matches
Mail list logo