Orbits
1
|
Go to the source code of this file.
Classes | |
struct | asdl_seq |
struct | asdl_int_seq |
Macros | |
#define | asdl_seq_GET(S, I) (S)->elements[(I)] |
#define | asdl_seq_LEN(S) ((S) == NULL ? 0 : (S)->size) |
#define | asdl_seq_SET(S, I, V) (S)->elements[I] = (V) |
Typedefs | |
typedef PyObject * | identifier |
typedef PyObject * | string |
typedef PyObject * | object |
Enumerations | |
enum | bool { false, true } |
Functions | |
asdl_seq * | asdl_seq_new (int size, PyArena *arena) |
asdl_int_seq * | asdl_int_seq_new (int size, PyArena *arena) |
#define asdl_seq_GET | ( | S, | |
I | |||
) | (S)->elements[(I)] |
#define asdl_seq_LEN | ( | S | ) | ((S) == NULL ? 0 : (S)->size) |
#define asdl_seq_SET | ( | S, | |
I, | |||
V | |||
) | (S)->elements[I] = (V) |
typedef PyObject* identifier |
enum bool |
asdl_int_seq* asdl_int_seq_new | ( | int | size, |
PyArena * | arena | ||
) |
Copyright 2014 Google Inc. All rights reserved.