Changeset 388 for python/vendor/current/Include/Python.h
- Timestamp:
- Mar 19, 2014, 11:11:30 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/vendor/current/Include/Python.h
r2 r388 93 93 #include "rangeobject.h" 94 94 #include "stringobject.h" 95 /* #include "memoryobject.h" */ 95 #include "memoryobject.h" 96 96 #include "bufferobject.h" 97 97 #include "bytesobject.h" … … 108 108 #include "fileobject.h" 109 109 #include "cobject.h" 110 #include "pycapsule.h" 110 111 #include "traceback.h" 111 112 #include "sliceobject.h" … … 135 136 #include "eval.h" 136 137 138 #include "pyctype.h" 137 139 #include "pystrtod.h" 138 140 #include "pystrcmp.h" 141 #include "dtoa.h" 139 142 140 143 /* _Py_Mangle is defined in compile.c */ … … 148 151 #define PyArg_NoArgs(v) PyArg_Parse(v, "") 149 152 150 /* Convert a possibly signed character to a nonnegative int */ 151 /* XXX This assumes characters are 8 bits wide */ 152 #ifdef __CHAR_UNSIGNED__ 153 #define Py_CHARMASK(c) (c) 154 #else 153 /* Argument must be a char or an int in [-128, 127] or [0, 255]. */ 155 154 #define Py_CHARMASK(c) ((unsigned char)((c) & 0xff)) 156 #endif157 155 158 156 #include "pyfpe.h"
Note:
See TracChangeset
for help on using the changeset viewer.