[Python-checkins] CVS: python/dist/src/Modules binascii.c,2.25,2.26

Tim Peters python-dev@python.org
Tue, 15 Aug 2000 09:41:29 -0700


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

Modified Files:
	binascii.c 
Log Message:
Fix new compiler warnings.  Unused var in compile.c.  Argsize mismatches
in binascii.c (only on platforms with signed chars -- although Py_CHARMASK
is documented as returning an int, it only does so on platforms with
signed chars).


Index: binascii.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/binascii.c,v
retrieving revision 2.25
retrieving revision 2.26
diff -C2 -r2.25 -r2.26
*** binascii.c	2000/08/15 06:59:58	2.25
--- binascii.c	2000/08/15 16:41:26	2.26
***************
*** 919,923 ****
  
  static int
! to_int(char c) 
  {
  	if (isdigit(c))
--- 919,923 ----
  
  static int
! to_int(int c) 
  {
  	if (isdigit(c))