/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
compile.c | 131 for enclosing blocks are stored in c_stack. The u and c_stack are
145 PyObject *c_stack; /* Python list holding compiler_unit ptrs */
member in struct:compiler 246 c->c_stack = PyList_New(0);
247 if (!c->c_stack)
322 Py_DECREF(c->c_stack);
519 if (!capsule || PyList_Append(c->c_stack, capsule) < 0) {
546 n = PyList_GET_SIZE(c->c_stack) - 1;
548 capsule = PyList_GET_ITEM(c->c_stack, n);
552 if (PySequence_DelItem(c->c_stack, n) < 0) [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
compile.c | 131 for enclosing blocks are stored in c_stack. The u and c_stack are
145 PyObject *c_stack; /* Python list holding compiler_unit ptrs */
member in struct:compiler 243 c->c_stack = PyList_New(0);
244 if (!c->c_stack)
319 Py_DECREF(c->c_stack);
496 if (!capsule || PyList_Append(c->c_stack, capsule) < 0) {
523 n = PyList_GET_SIZE(c->c_stack) - 1;
525 capsule = PyList_GET_ITEM(c->c_stack, n);
529 if (PySequence_DelItem(c->c_stack, n) < 0) [all...] |
/external/python/cpython2/Python/ |
compile.c | 131 for enclosing blocks are stored in c_stack. The u and c_stack are 145 PyObject *c_stack; /* Python list holding compiler_unit ptrs */ member in struct:compiler 246 c->c_stack = PyList_New(0); 247 if (!c->c_stack) 322 Py_DECREF(c->c_stack); 519 if (!capsule || PyList_Append(c->c_stack, capsule) < 0) { 546 n = PyList_GET_SIZE(c->c_stack) - 1; 548 capsule = PyList_GET_ITEM(c->c_stack, n); 552 if (PySequence_DelItem(c->c_stack, n) < 0 [all...] |
/external/python/cpython3/Python/ |
compile.c | 142 for enclosing blocks are stored in c_stack. The u and c_stack are 162 PyObject *c_stack; /* Python list holding compiler_unit ptrs */ member in struct:compiler 293 c->c_stack = PyList_New(0); 294 if (!c->c_stack) 395 Py_DECREF(c->c_stack); 623 if (!capsule || PyList_Append(c->c_stack, capsule) < 0) { 658 n = PyList_GET_SIZE(c->c_stack) - 1; 660 capsule = PyList_GET_ITEM(c->c_stack, n); 664 if (PySequence_DelItem(c->c_stack, n) < 0 [all...] |