Home | History | Annotate | Download | only in Python

Lines Matching refs:capsule

622         PyObject *capsule = PyCapsule_New(c->u, CAPSULE_NAME, NULL);
623 if (!capsule || PyList_Append(c->c_stack, capsule) < 0) {
624 Py_XDECREF(capsule);
628 Py_DECREF(capsule);
653 PyObject *capsule;
660 capsule = PyList_GET_ITEM(c->c_stack, n);
661 c->u = (struct compiler_unit *)PyCapsule_GetPointer(capsule, CAPSULE_NAME);
688 PyObject *mangled, *capsule;
690 capsule = PyList_GET_ITEM(c->c_stack, stack_size - 1);
691 parent = (struct compiler_unit *)PyCapsule_GetPointer(capsule, CAPSULE_NAME);