[Python-checkins] CVS: python/dist/src/Python getargs.c,2.45,2.46

M.-A. Lemburg python-dev@python.org
Fri, 8 Sep 2000 04:49:40 -0700


Update of /cvsroot/python/python/dist/src/Python
In directory slayer.i.sourceforge.net:/tmp/cvs-serv30802/Python

Modified Files:
	getargs.c 
Log Message:
This patch hopefully fixes the problem with "es#" and "es" in
PyArg_ParseTupleAndKeywords() and closes bug #113807.

Index: getargs.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/getargs.c,v
retrieving revision 2.45
retrieving revision 2.46
diff -C2 -r2.45 -r2.46
*** getargs.c	2000/09/01 23:29:28	2.45
--- getargs.c	2000/09/08 11:49:37	2.46
***************
*** 968,971 ****
--- 968,973 ----
  			break;
  		}
+ 		else if (c == 'e')
+ 			; /* Pass */
  		else if (isalpha(c))
  			max++;