[Python-checkins] CVS: python/dist/src/Python bltinmodule.c,2.167,2.168

Tim Peters python-dev@python.org
Sat, 8 Jul 2000 19:11:21 -0700


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

Modified Files:
	bltinmodule.c 
Log Message:
Get rid of unused vars in builtin_unicode (they were causing
legit warnings).


Index: bltinmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/bltinmodule.c,v
retrieving revision 2.167
retrieving revision 2.168
diff -C2 -r2.167 -r2.168
*** bltinmodule.c	2000/07/07 13:48:25	2.167
--- bltinmodule.c	2000/07/09 02:11:18	2.168
***************
*** 149,154 ****
  {
          PyObject *v;
- 	const void *buffer;
- 	int len;
  	char *encoding = NULL;
  	char *errors = NULL;
--- 149,152 ----