Commit c2d14176 authored by Guido van Rossum's avatar Guido van Rossum

Added Py_GetProgramFullPath (same as GetProgramName)

parent 39ed1c35
......@@ -194,3 +194,10 @@ Py_GetExecPrefix()
{
return EXEC_PREFIX;
}
char *
Py_GetProgramFullPath()
{
extern char *Py_GetProgramName();
return Py_GetProgramName();
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment