mirror of
https://github.com/python/cpython.git
synced 2025-10-07 15:42:02 +00:00
Remove extra parens
This commit is contained in:
parent
c10978f43c
commit
9dbc7dd6f2
1 changed files with 1 additions and 1 deletions
|
@ -636,7 +636,7 @@ Tkapp_New(char *screenName, char *baseName, char *className,
|
|||
}
|
||||
|
||||
strcpy(argv0, className);
|
||||
if (isupper(Py_CHARMASK((argv0[0]))))
|
||||
if (isupper(Py_CHARMASK(argv0[0])))
|
||||
argv0[0] = tolower(argv0[0]);
|
||||
Tcl_SetVar(v->interp, "argv0", argv0, TCL_GLOBAL_ONLY);
|
||||
ckfree(argv0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue