python-2.7.6/include/asdl.h Source File
Go to the documentation of this file.
9 typedef enum {
false,
true}
bool;
33 #define asdl_seq_GET(S, I) (S)->elements[(I)]
34 #define asdl_seq_LEN(S) ((S) == NULL ? 0 : (S)->size)
36 #define asdl_seq_SET(S, I, V) { \
38 assert((S) && _asdl_i < (S)->size); \
39 (S)->elements[_asdl_i] = (V); \
42 #define asdl_seq_SET(S, I, V) (S)->elements[I] = (V)
asdl_int_seq * asdl_int_seq_new(int size, PyArena *arena)
Py_ssize_t Py_ssize_t size
asdl_seq * asdl_seq_new(int size, PyArena *arena)