Commit f6c606da authored by Tim Peters's avatar Tim Peters

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).
parent 2167683d
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment