We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
_tkinter.tktimertoken
1 parent c7213ac commit 443908fCopy full SHA for 443908f
1 file changed
Modules/_tkinter.c
@@ -3270,11 +3270,14 @@ static PyType_Slot Tktt_Type_slots[] = {
3270
};
3271
3272
static PyType_Spec Tktt_Type_spec = {
3273
- "_tkinter.tktimertoken",
3274
- sizeof(TkttObject),
3275
- 0,
3276
- Py_TPFLAGS_DEFAULT | Py_TPFLAGS_DISALLOW_INSTANTIATION,
3277
- Tktt_Type_slots,
+ .name = "_tkinter.tktimertoken",
+ .basicsize = sizeof(TkttObject),
+ .flags = (
+ Py_TPFLAGS_DEFAULT
+ | Py_TPFLAGS_DISALLOW_INSTANTIATION
3278
+ | Py_TPFLAGS_IMMUTABLETYPE
3279
+ ),
3280
+ .slots = Tktt_Type_slots,
3281
3282
3283
0 commit comments