Commit efdc16f9 authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #20204: Added the __module__ attribute to _tkinter classes.

parent 24d3deef
...@@ -12,6 +12,9 @@ Core and Builtins ...@@ -12,6 +12,9 @@ Core and Builtins
Library Library
------- -------
- Issue #20204: Added the __module__ attribute to _tkinter classes.
- Issue #23521: Corrected pure python implementation of timedelta division. - Issue #23521: Corrected pure python implementation of timedelta division.
* Eliminated OverflowError from timedelta * float for some floats; * Eliminated OverflowError from timedelta * float for some floats;
......
...@@ -2388,7 +2388,7 @@ static PyType_Slot Tktt_Type_slots[] = { ...@@ -2388,7 +2388,7 @@ static PyType_Slot Tktt_Type_slots[] = {
}; };
static PyType_Spec Tktt_Type_spec = { static PyType_Spec Tktt_Type_spec = {
"tktimertoken", "_tkinter.tktimertoken",
sizeof(TkttObject), sizeof(TkttObject),
0, 0,
Py_TPFLAGS_DEFAULT, Py_TPFLAGS_DEFAULT,
...@@ -2692,7 +2692,7 @@ static PyType_Slot Tkapp_Type_slots[] = { ...@@ -2692,7 +2692,7 @@ static PyType_Slot Tkapp_Type_slots[] = {
static PyType_Spec Tkapp_Type_spec = { static PyType_Spec Tkapp_Type_spec = {
"tkapp", "_tkinter.tkapp",
sizeof(TkappObject), sizeof(TkappObject),
0, 0,
Py_TPFLAGS_DEFAULT, Py_TPFLAGS_DEFAULT,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment