mirror of
https://github.com/python/cpython.git
synced 2025-11-11 14:44:57 +00:00
Issue #20204: Added the __module__ attribute to _tkinter classes.
This commit is contained in:
parent
24d3deefcf
commit
efdc16f978
2 changed files with 5 additions and 2 deletions
|
|
@ -12,6 +12,9 @@ Core and Builtins
|
|||
|
||||
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;
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue