changeset: 94795:3244142eeafb parent: 94792:cfdba57d0070 parent: 94794:a192cc5a63be user: Serhiy Storchaka date: Sun Mar 01 09:07:10 2015 +0200 files: Misc/NEWS Modules/_tkinter.c description: Issue #20204: Added the __module__ attribute to _tkinter classes. diff -r cfdba57d0070 -r 3244142eeafb Misc/NEWS --- a/Misc/NEWS Sat Feb 28 19:53:50 2015 -0800 +++ b/Misc/NEWS Sun Mar 01 09:07:10 2015 +0200 @@ -13,6 +13,8 @@ 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. diff -r cfdba57d0070 -r 3244142eeafb Modules/_tkinter.c --- a/Modules/_tkinter.c Sat Feb 28 19:53:50 2015 -0800 +++ b/Modules/_tkinter.c Sun Mar 01 09:07:10 2015 +0200 @@ -2409,7 +2409,7 @@ }; static PyType_Spec Tktt_Type_spec = { - "tktimertoken", + "_tkinter.tktimertoken", sizeof(TkttObject), 0, Py_TPFLAGS_DEFAULT, @@ -2713,7 +2713,7 @@ static PyType_Spec Tkapp_Type_spec = { - "tkapp", + "_tkinter.tkapp", sizeof(TkappObject), 0, Py_TPFLAGS_DEFAULT,