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 glombardo
Recipients glombardo
Date 2019-12-29.13:05:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1577624733.91.0.369906281789.issue39152@roundup.psfhosted.org>
In-reply-to
Content
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", line 604, in main
    cursor = scale.configure('cursor')[-1]
File "C:\Users\Giovanni\AppData\Local\Programs\Python\Python37\lib\tkinter\ttk.py", line 1090, in configure
    kw.update(cnf)
ValueError: dictionary update sequence element #0 has length 1; 2 is required
```

The interpreter is:

```
Python 3.7.4 (tags/v3.7.4:e09359112e, Jul  8 2019, 20:34:20) [MSC v.1916 64 bit (AMD64)] on win32```
History
Date User Action Args
2019-12-29 13:05:33glombardosetrecipients: + glombardo
2019-12-29 13:05:33glombardosetmessageid: <1577624733.91.0.369906281789.issue39152@roundup.psfhosted.org>
2019-12-29 13:05:33glombardolinkissue39152 messages
2019-12-29 13:05:33glombardocreate