]> granicus.if.org Git - python/commitdiff
Changed the UCHAR_MAX error msg a bit: we don't really assume anything
authorTim Peters <tim.peters@gmail.com>
Mon, 22 Dec 2003 18:10:51 +0000 (18:10 +0000)
committerTim Peters <tim.peters@gmail.com>
Mon, 22 Dec 2003 18:10:51 +0000 (18:10 +0000)
about "characters", we assume something about C's char type (which is
an integral type).

Include/Python.h

index c28c23cf3f19b3f6a3f6c16b1cde86d8d67547ca..bff2c57e067e53e586bf9d11d6e49f66c413783e 100644 (file)
@@ -26,7 +26,7 @@
 #endif
 
 #if UCHAR_MAX != 255
-#error "Python's source code currently assumes 8-bit characters."
+#error "Python's source code assumes C's unsigned char is an 8-bit type."
 #endif
 
 #if defined(__sgi) && defined(WITH_THREAD) && !defined(_SGI_MP_SOURCE)