summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-02-19 16:34:05 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-02-19 16:34:05 (GMT)
commite95977621de92f99153d48d2c4dde9cbdff6e3a7 (patch)
treea743c0632946e730ef35c277ee5d3ff14e907315 /Misc
parentd5c8ce7cc03d81402b2fcdc023fb6ea44ac70f25 (diff)
downloadcpython-e95977621de92f99153d48d2c4dde9cbdff6e3a7.zip
cpython-e95977621de92f99153d48d2c4dde9cbdff6e3a7.tar.gz
cpython-e95977621de92f99153d48d2c4dde9cbdff6e3a7.tar.bz2
Fixed grid_columnconfigure() and grid_rowconfigure() methods of
Tkinter widgets to work in wantobjects=True mode.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index aed4eff..eb9bc58 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -20,6 +20,9 @@ Core and Builtins
Library
-------
+- Issue #20635: Fixed grid_columnconfigure() and grid_rowconfigure() methods of
+ Tkinter widgets to work in wantobjects=True mode.
+
- Issue #19612: On Windows, subprocess.Popen.communicate() now ignores
OSError(22, 'Invalid argument') when writing input data into stdin, whereas
the process already exited.