mirror of
https://github.com/python/cpython.git
synced 2025-08-25 11:15:02 +00:00
getprogramname --> Py_GetProgramName
This commit is contained in:
parent
3823420ca4
commit
32aa1a72b2
1 changed files with 3 additions and 3 deletions
|
@ -30,7 +30,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
#include <tcl.h>
|
#include <tcl.h>
|
||||||
#include <tk.h>
|
#include <tk.h>
|
||||||
|
|
||||||
extern char *getprogramname ();
|
extern char *Py_GetProgramName ();
|
||||||
|
|
||||||
/* Internal declarations from tkInt.h. */
|
/* Internal declarations from tkInt.h. */
|
||||||
#if (TK_MAJOR_VERSION*1000 + TK_MINOR_VERSION) >= 4001
|
#if (TK_MAJOR_VERSION*1000 + TK_MINOR_VERSION) >= 4001
|
||||||
|
@ -1234,11 +1234,11 @@ Tkinter_Create (self, args)
|
||||||
char *className = NULL;
|
char *className = NULL;
|
||||||
int interactive = 0;
|
int interactive = 0;
|
||||||
|
|
||||||
baseName = strrchr (getprogramname (), '/');
|
baseName = strrchr (Py_GetProgramName (), '/');
|
||||||
if (baseName != NULL)
|
if (baseName != NULL)
|
||||||
baseName++;
|
baseName++;
|
||||||
else
|
else
|
||||||
baseName = getprogramname ();
|
baseName = Py_GetProgramName ();
|
||||||
className = "Tk";
|
className = "Tk";
|
||||||
|
|
||||||
if (!PyArg_ParseTuple (args, "|zssi",
|
if (!PyArg_ParseTuple (args, "|zssi",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue