summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGarvit Khatri <garvitdelhi@gmail.com>2018-03-26 07:02:05 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2018-03-26 07:02:05 (GMT)
commit3ab44c0783eebdff687014f7d14d5dec59b6bd39 (patch)
tree77df1a4b12402a9498ad17e81cd39cdeb58e1552 /Misc
parent2b75fc2bc97702224de0fae8ab026ec0cd0706ab (diff)
downloadcpython-3ab44c0783eebdff687014f7d14d5dec59b6bd39.zip
cpython-3ab44c0783eebdff687014f7d14d5dec59b6bd39.tar.gz
cpython-3ab44c0783eebdff687014f7d14d5dec59b6bd39.tar.bz2
bpo-33096: Fix ttk.Treeview.insert. (GH-6228)
Allow ttk.Treeview.insert to insert iid that has a false boolean value. Note iid=0 and iid=False would be same.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-03-25-13-18-16.bpo-33096.ofdbe7.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-03-25-13-18-16.bpo-33096.ofdbe7.rst b/Misc/NEWS.d/next/Library/2018-03-25-13-18-16.bpo-33096.ofdbe7.rst
new file mode 100644
index 0000000..c55ea20
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-03-25-13-18-16.bpo-33096.ofdbe7.rst
@@ -0,0 +1,4 @@
+Allow ttk.Treeview.insert to insert iid that has a false boolean value.
+Note iid=0 and iid=False would be same.
+Patch by Garvit Khatri.
+