From: Tim Peters Date: Mon, 22 Dec 2003 18:10:51 +0000 (+0000) Subject: Changed the UCHAR_MAX error msg a bit: we don't really assume anything X-Git-Tag: v2.4a1~1057 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0490fe96d882072aca640ef5c6f42ed80a789f0d;p=thirdparty%2FPython%2Fcpython.git 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). --- diff --git a/Include/Python.h b/Include/Python.h index c28c23cf3f19..bff2c57e067e 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -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)