[Python-checkins] commit of r41771 - python/trunk/Python/getargs.c

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


Author: neal.norwitz
Date: Mon Dec 19 07:10:07 2005
New Revision: 41771

Modified:
   python/trunk/Python/getargs.c
Log:
Remove extra parens

Modified: python/trunk/Python/getargs.c
==============================================================================
--- python/trunk/Python/getargs.c	(original)
+++ python/trunk/Python/getargs.c	Mon Dec 19 07:10:07 2005
@@ -255,7 +255,7 @@
 		}
 	}
 
-	if (*format != '\0' && !isalpha(Py_CHARMASK((*format))) &&
+	if (*format != '\0' && !isalpha(Py_CHARMASK(*format)) &&
 	    *format != '(' &&
 	    *format != '|' && *format != ':' && *format != ';') {
 		PyErr_Format(PyExc_SystemError,


More information about the Python-checkins mailing list