[Python-checkins] r82195 - in python/branches/release31-maint: Include/pyctype.h

stefan.krah python-checkins at python.org
Thu Jun 24 12:27:19 CEST 2010


Author: stefan.krah
Date: Thu Jun 24 12:27:19 2010
New Revision: 82195

Log:
Merged revisions 82194 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r82194 | stefan.krah | 2010-06-24 12:25:08 +0200 (Thu, 24 Jun 2010) | 3 lines
  
  Add specification for the Py_IS* macros in pyctype.h.
........


Modified:
   python/branches/release31-maint/   (props changed)
   python/branches/release31-maint/Include/pyctype.h

Modified: python/branches/release31-maint/Include/pyctype.h
==============================================================================
--- python/branches/release31-maint/Include/pyctype.h	(original)
+++ python/branches/release31-maint/Include/pyctype.h	Thu Jun 24 12:27:19 2010
@@ -11,6 +11,9 @@
 
 extern const unsigned int _Py_ctype_table[256];
 
+/* Unlike their C counterparts, the following macros are not meant to
+ * handle an int with any of the values [EOF, 0-UCHAR_MAX]. The argument
+ * must be a signed/unsigned char. */
 #define Py_ISLOWER(c)  (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_LOWER)
 #define Py_ISUPPER(c)  (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_UPPER)
 #define Py_ISALPHA(c)  (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_ALPHA)


More information about the Python-checkins mailing list