[Python-checkins] python/dist/src/Python getargs.c,2.93,2.94

doerwalter@users.sourceforge.net doerwalter@users.sourceforge.net
Thu, 21 Nov 2002 12:23:14 -0800


Update of /cvsroot/python/python/dist/src/Python
In directory sc8-pr-cvs1:/tmp/cvs-serv12631/Python

Modified Files:
	getargs.c 
Log Message:
Wrap uargs declaration in a #ifdef Py_USING_UNICODE, so that
the --disable-unicode build doesn't complain about an
unused variable.


Index: getargs.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/getargs.c,v
retrieving revision 2.93
retrieving revision 2.94
diff -C2 -d -r2.93 -r2.94
*** getargs.c	28 Jul 2002 10:23:27 -0000	2.93
--- getargs.c	21 Nov 2002 20:23:11 -0000	2.94
***************
*** 401,405 ****
--- 401,407 ----
  	char *format = *p_format;
  	char c = *format++;
+ #ifdef Py_USING_UNICODE
  	PyObject *uarg;
+ #endif
  	
  	switch (c) {