changeset: 94794:a192cc5a63be branch: 3.4 parent: 94787:8fe15bf68522 user: Serhiy Storchaka date: Sun Mar 01 09:06:29 2015 +0200 files: Misc/NEWS Modules/_tkinter.c description: Issue #20204: Added the __module__ attribute to _tkinter classes. diff -r 8fe15bf68522 -r a192cc5a63be Misc/NEWS --- a/Misc/NEWS Sat Feb 28 10:41:57 2015 -0500 +++ b/Misc/NEWS Sun Mar 01 09:06:29 2015 +0200 @@ -12,6 +12,9 @@ Library ------- + +- Issue #20204: Added the __module__ attribute to _tkinter classes. + - Issue #23521: Corrected pure python implementation of timedelta division. * Eliminated OverflowError from timedelta * float for some floats; diff -r 8fe15bf68522 -r a192cc5a63be Modules/_tkinter.c --- a/Modules/_tkinter.c Sat Feb 28 10:41:57 2015 -0500 +++ b/Modules/_tkinter.c Sun Mar 01 09:06:29 2015 +0200 @@ -2388,7 +2388,7 @@ }; static PyType_Spec Tktt_Type_spec = { - "tktimertoken", + "_tkinter.tktimertoken", sizeof(TkttObject), 0, Py_TPFLAGS_DEFAULT, @@ -2692,7 +2692,7 @@ static PyType_Spec Tkapp_Type_spec = { - "tkapp", + "_tkinter.tkapp", sizeof(TkappObject), 0, Py_TPFLAGS_DEFAULT,