[Python-checkins] r42739 - python/trunk/Python/getargs.c

thomas.wouters python-checkins at python.org
Wed Mar 1 22:31:23 CET 2006


Author: thomas.wouters
Date: Wed Mar  1 22:31:21 2006
New Revision: 42739

Modified:
   python/trunk/Python/getargs.c
Log:

Fix C99-ism, and add XXX to comment



Modified: python/trunk/Python/getargs.c
==============================================================================
--- python/trunk/Python/getargs.c	(original)
+++ python/trunk/Python/getargs.c	Wed Mar  1 22:31:21 2006
@@ -849,7 +849,7 @@
 						  arg, msgbuf, bufsize);
 			if (*format == '#') {
 				FETCH_SIZE;
-				assert(0); // redundant with if-case
+				assert(0); /* XXX redundant with if-case */
 				if (arg == Py_None)
 					*q = 0;
 				else


More information about the Python-checkins mailing list