Giovanni Lombardo added the comment:
http://docs.python.org/devguide/triaging.html#assigned-to
--
nosy: +glombardo
___
Python tracker
<https://bugs.python.org/issue31
New submission from Giovanni Lombardo :
The issue arises by simply calling configure on the Scale widget of the themed
tk (ttk) widgets set:
```
cursor = scale.configure('cursor')[-1]
```
The above casues the following error:
```
File "C:\Users\Giovanni\Tests\test_scale.py
Giovanni Lombardo added the comment:
I've modified the `Scale.configure` implementation as follows:
```
def configure(self, cnf=None, **kw):
"""Modify or query scale options.
Setting a value for any of the "from", "from_" or &
Giovanni Lombardo added the comment:
Hello Terry J. Reedy, first and foremost thanks for the time you've dedicated
to this issue! I really appreciate you work!! Even if I work with Python since
2007, I'm new here, and not very well versed with this issue management system.
This h
Giovanni Lombardo added the comment:
@serhiy.storchaka I didn't found any old issue not closed aboud tkinter Scale
widget.
--
___
Python tracker
<https://bugs.python.org/is
Giovanni Lombardo added the comment:
I propose the below fix:
```
def unbind(self, sequence, funcid=None):
"""Unbind for this widget for event SEQUENCE the
function identified with FUNCID."""
bound = ''
if funci