summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2008-11-03 18:18:08 +0000
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2008-11-03 18:18:08 +0000
commit347ee04e991628336c3fabb4d8ba2c96ad9ed0f2 (patch)
tree9e335417a2374a641cde0c0bfe1847b488d151ed /Misc
parent4255f427ca4b2bc736171e258ab70ed0fd9aca0a (diff)
downloadcpython-347ee04e991628336c3fabb4d8ba2c96ad9ed0f2.tar.gz
Issue #3774: Fixed an error when create a Tkinter menu item without command
and then remove it. Written by Guilherme Polo (gpolo). Backport of r67082.
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 c8651c1820..4c45e4fc50 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -97,6 +97,9 @@ Core and builtins
Library
-------
+- Issue #3774: Fixed an error when create a Tkinter menu item without command
+ and then remove it.
+
- Assigning methods to ctypes.Structure and ctypes.Union subclasses
after creation of the class does now work correctly. See Issue #1700288.