[Python-checkins] python/dist/src/Include Python.h,2.59,2.60

tim_one at users.sourceforge.net tim_one at users.sourceforge.net
Mon Dec 22 13:10:54 EST 2003


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

Modified Files:
	Python.h 
Log Message:
Changed the UCHAR_MAX error msg a bit:  we don't really assume anything
about "characters", we assume something about C's char type (which is
an integral type).


Index: Python.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/Python.h,v
retrieving revision 2.59
retrieving revision 2.60
diff -C2 -d -r2.59 -r2.60
*** Python.h	22 Dec 2003 16:31:33 -0000	2.59
--- Python.h	22 Dec 2003 18:10:51 -0000	2.60
***************
*** 27,31 ****
  
  #if UCHAR_MAX != 255
! #error "Python's source code currently assumes 8-bit characters."
  #endif
  
--- 27,31 ----
  
  #if UCHAR_MAX != 255
! #error "Python's source code assumes C's unsigned char is an 8-bit type."
  #endif
  





More information about the Python-checkins mailing list