Issue #20204: Added the __module__ attribute to _tkinter classes.
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_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,