File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ Core and Builtins
1212
1313Library
1414-------
15+
16+ - Issue #20204: Added the __module__ attribute to _tkinter classes.
17+
1518- Issue #23521: Corrected pure python implementation of timedelta division.
1619
1720 * Eliminated OverflowError from timedelta * float for some floats;
Original file line number Diff line number Diff line change @@ -2388,7 +2388,7 @@ static PyType_Slot Tktt_Type_slots[] = {
23882388};
23892389
23902390static PyType_Spec Tktt_Type_spec = {
2391- "tktimertoken" ,
2391+ "_tkinter. tktimertoken" ,
23922392 sizeof (TkttObject ),
23932393 0 ,
23942394 Py_TPFLAGS_DEFAULT ,
@@ -2692,7 +2692,7 @@ static PyType_Slot Tkapp_Type_slots[] = {
26922692
26932693
26942694static PyType_Spec Tkapp_Type_spec = {
2695- "tkapp" ,
2695+ "_tkinter. tkapp" ,
26962696 sizeof (TkappObject ),
26972697 0 ,
26982698 Py_TPFLAGS_DEFAULT ,
You can’t perform that action at this time.
0 commit comments