Add a call to Tcl_FindExecutable(). This was inspired by a patch by

Martin von Loewis (whose more elaborate patch to use objects is still
under review).
This commit is contained in:
Guido van Rossum 2000-03-27 21:46:29 +00:00
parent dc8b7980e0
commit e187b0eb20
1 changed files with 6 additions and 0 deletions

View File

@ -2045,6 +2045,12 @@ init_tkinter()
Tktt_Type.ob_type = &PyType_Type;
PyDict_SetItemString(d, "TkttType", (PyObject *)&Tktt_Type);
#if TKMAJORMINOR >= 8000
/* This helps the dynamic loader; in Unicode aware Tcl versions
it also helps Tcl find its encodings. */
Tcl_FindExecutable(Py_GetProgramName());
#endif
if (PyErr_Occurred())
return;