[Python-checkins] CVS: python/dist/src/Objects unicodeobject.c,2.84,2.85

Tim Peters tim_one@users.sourceforge.net
Thu, 19 Apr 2001 14:55:16 -0700


Update of /cvsroot/python/python/dist/src/Objects
In directory usw-pr-cvs1:/tmp/cvs-serv30795/python/dist/src/Objects

Modified Files:
	unicodeobject.c 
Log Message:
CVS patch 416248: 2.1c1 unicodeobject: unused vrbl cleanup, from Mark Favas.


Index: unicodeobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/unicodeobject.c,v
retrieving revision 2.84
retrieving revision 2.85
diff -C2 -r2.84 -r2.85
*** unicodeobject.c	2001/04/19 16:43:49	2.84
--- unicodeobject.c	2001/04/19 21:55:14	2.85
***************
*** 4794,4798 ****
  	    int width = -1;
  	    int prec = -1;
- 	    int size = 0;
  	    Py_UNICODE c = '\0';
  	    Py_UNICODE fill;
--- 4794,4797 ----
***************
*** 4932,4936 ****
  	    if (fmtcnt >= 0) {
  		if (c == 'h' || c == 'l' || c == 'L') {
- 		    size = c;
  		    if (--fmtcnt >= 0)
  			c = *fmt++;
--- 4931,4934 ----