From: Serhiy Storchaka Date: Sun, 1 Mar 2015 07:07:10 +0000 (+0200) Subject: Issue #20204: Added the __module__ attribute to _tkinter classes. X-Git-Tag: v3.5.0a2~63 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=50adb9fc3297377a606371cd208a91d2ff89b05a;p=python Issue #20204: Added the __module__ attribute to _tkinter classes. --- 50adb9fc3297377a606371cd208a91d2ff89b05a diff --cc Misc/NEWS index f1a1410191,5a9b8360d2..d62e695fa2 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -13,10 -13,8 +13,12 @@@ Core and Builtin 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. + - Issue #23521: Corrected pure python implementation of timedelta division. * Eliminated OverflowError from timedelta * float for some floats;