diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-01 07:06:29 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-01 07:06:29 (GMT) |
commit | efdc16f978d20f2b1937002dffbbe658dad2eff6 (patch) | |
tree | 9d8fa530acbd128a6876d2aa4a9985c9e3d60828 /Modules/_tkinter.c | |
parent | 24d3deefcf2f78b12fc29ed4c9a3811d46c534bb (diff) | |
download | cpython-efdc16f978d20f2b1937002dffbbe658dad2eff6.zip cpython-efdc16f978d20f2b1937002dffbbe658dad2eff6.tar.gz cpython-efdc16f978d20f2b1937002dffbbe658dad2eff6.tar.bz2 |
Issue #20204: Added the __module__ attribute to _tkinter classes.
Diffstat (limited to 'Modules/_tkinter.c')
-rw-r--r-- | Modules/_tkinter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index f5bade0..14241e5 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -2388,7 +2388,7 @@ static PyType_Slot Tktt_Type_slots[] = { }; static PyType_Spec Tktt_Type_spec = { - "tktimertoken", + "_tkinter.tktimertoken", sizeof(TkttObject), 0, Py_TPFLAGS_DEFAULT, @@ -2692,7 +2692,7 @@ static PyType_Slot Tkapp_Type_slots[] = { static PyType_Spec Tkapp_Type_spec = { - "tkapp", + "_tkinter.tkapp", sizeof(TkappObject), 0, Py_TPFLAGS_DEFAULT, |