diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2020-01-05 16:23:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-05 16:23:58 (GMT) |
commit | 5ea7bb25e3b192d6c49a49c9e3b316f8559602aa (patch) | |
tree | 9223773683bcf2c6c4f8b533b19eefc30719b986 /Misc | |
parent | b19c0d77e6f25ea831ab608c71f15d0d9266c8c4 (diff) | |
download | cpython-5ea7bb25e3b192d6c49a49c9e3b316f8559602aa.zip cpython-5ea7bb25e3b192d6c49a49c9e3b316f8559602aa.tar.gz cpython-5ea7bb25e3b192d6c49a49c9e3b316f8559602aa.tar.bz2 |
bpo-39152: add missing ttk.Scale.configure return value (GH-17815)
tkinter.ttk.Scale().configure([name]) now returns a configuration tuple for name
or a list thereof for all options. Based on patch Giovanni Lombardo.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-01-03-18-02-50.bpo-39152.JgPjCC.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-01-03-18-02-50.bpo-39152.JgPjCC.rst b/Misc/NEWS.d/next/Library/2020-01-03-18-02-50.bpo-39152.JgPjCC.rst new file mode 100644 index 0000000..abb3df0 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-01-03-18-02-50.bpo-39152.JgPjCC.rst @@ -0,0 +1,2 @@ +Fix ttk.Scale.configure([name]) to return configuration tuple for name +or all options. Giovanni Lombardo contributed part of the patch. |