[Python-checkins] python/dist/src/Python compile.c,2.283,2.284

loewis@users.sourceforge.net loewis@users.sourceforge.net
Sat, 10 May 2003 00:36:58 -0700


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

Modified Files:
	compile.c 
Log Message:
Patch #734231: Update RiscOS support. In particular, correct 
riscospath.extsep, and use os.extsep throughout.


Index: compile.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/compile.c,v
retrieving revision 2.283
retrieving revision 2.284
diff -C2 -d -r2.283 -r2.284
*** compile.c	3 May 2003 10:53:08 -0000	2.283
--- compile.c	10 May 2003 07:36:56 -0000	2.284
***************
*** 421,425 ****
  		}
  	}
! 	code = PyString_FromStringAndSize(codestr, codelen);
  	PyMem_Free(codestr);
  	return code;
--- 421,425 ----
  		}
  	}
! 	code = PyString_FromStringAndSize((char *)codestr, codelen);
  	PyMem_Free(codestr);
  	return code;