summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-12-22 18:10:51 (GMT)
committerTim Peters <tim.peters@gmail.com>2003-12-22 18:10:51 (GMT)
commit0490fe96d882072aca640ef5c6f42ed80a789f0d (patch)
tree3e0ecc076ec325c0d4f12c1e9a89c2f411e73df0
parentac4ea13a3aec87bf3e6ceb54e867e20f1fbd4253 (diff)
downloadcpython-0490fe96d882072aca640ef5c6f42ed80a789f0d.zip
cpython-0490fe96d882072aca640ef5c6f42ed80a789f0d.tar.gz
cpython-0490fe96d882072aca640ef5c6f42ed80a789f0d.tar.bz2
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).
-rw-r--r--Include/Python.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/Python.h b/Include/Python.h
index c28c23c..bff2c57 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)