sys.prefix and sys.exec_prefix are now set correctly.

This commit is contained in:
Jack Jansen 1997-09-08 13:22:22 +00:00
parent 80cf5a8c4c
commit ac62569fd0
1 changed files with 2 additions and 2 deletions

View File

@ -503,11 +503,11 @@ Py_GetArgcArgv(argc,argv)
char *
Py_GetPrefix()
{
return "";
return PyMac_GetPythonDir();
}
char *
Py_GetExecPrefix()
{
return "";
return PyMac_GetPythonDir();
}