bpo-46920: Remove code that has explainers why it was disabled (GH-31813)

This commit is contained in:
Oleg Iarygin
2022-03-14 19:04:22 +03:00
committed by GitHub
parent a52f82baf2
commit 13b0412223
4 changed files with 0 additions and 64 deletions

View File

@@ -3440,11 +3440,5 @@ PyInit__tkinter(void)
return NULL;
}
#if 0
/* This was not a good idea; through <Destroy> bindings,
Tcl_Finalize() may invoke Python code but at that point the
interpreter and thread state have already been destroyed! */
Py_AtExit(Tcl_Finalize);
#endif
return m;
}