mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Added Py_GetProgramFullPath (same as GetProgramName)
This commit is contained in:
parent
39ed1c35e5
commit
c2d1417615
1 changed files with 7 additions and 0 deletions
|
@ -194,3 +194,10 @@ Py_GetExecPrefix()
|
|||
{
|
||||
return EXEC_PREFIX;
|
||||
}
|
||||
|
||||
char *
|
||||
Py_GetProgramFullPath()
|
||||
{
|
||||
extern char *Py_GetProgramName();
|
||||
return Py_GetProgramName();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue