[Python-checkins] commit of r41770 - python/trunk/Modules/_tkinter.c

neal.norwitz python-checkins at python.org
Mon Dec 19 07:08:59 CET 2005


Author: neal.norwitz
Date: Mon Dec 19 07:08:59 2005
New Revision: 41770

Modified:
   python/trunk/Modules/_tkinter.c
Log:
Remove extra parens

Modified: python/trunk/Modules/_tkinter.c
==============================================================================
--- python/trunk/Modules/_tkinter.c	(original)
+++ python/trunk/Modules/_tkinter.c	Mon Dec 19 07:08:59 2005
@@ -636,7 +636,7 @@
 	}
 
 	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);


More information about the Python-checkins mailing list