summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-01 07:07:10 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-01 07:07:10 (GMT)
commit50adb9fc3297377a606371cd208a91d2ff89b05a (patch)
tree22b9b9d60d0ac25e667af5972ba4b326e4c6bd0d /Misc
parente4969f5df832eb8f626544d38ee11b75b52b4aee (diff)
parentefdc16f978d20f2b1937002dffbbe658dad2eff6 (diff)
downloadcpython-50adb9fc3297377a606371cd208a91d2ff89b05a.zip
cpython-50adb9fc3297377a606371cd208a91d2ff89b05a.tar.gz
cpython-50adb9fc3297377a606371cd208a91d2ff89b05a.tar.bz2
Issue #20204: Added the __module__ attribute to _tkinter classes.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f1a1410..d62e695 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,8 @@ Core and Builtins
Library
-------
+- Issue #20204: Added the __module__ attribute to _tkinter classes.
+
- Issue #19980: Improved help() for non-recognized strings. help('') now
shows the help on str. help('help') now shows the help on help().
Original patch by Mark Lawrence.