Home
last modified time | relevance | path

Searched refs:PyCellObject (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Objects/
Dcellobject.c9 PyCellObject *op; in PyCell_New()
11 op = (PyCellObject *)PyObject_GC_New(PyCellObject, &PyCell_Type); in PyCell_New()
59 Py_XINCREF(((PyCellObject*)op)->ob_ref); in PyCell_Get()
79 cell_dealloc(PyCellObject *op) in cell_dealloc()
98 a = ((PyCellObject *)a)->ob_ref; in cell_richcompare()
99 b = ((PyCellObject *)b)->ob_ref; in cell_richcompare()
107 cell_repr(PyCellObject *op) in cell_repr()
118 cell_traverse(PyCellObject *op, visitproc visit, void *arg) in cell_traverse()
125 cell_clear(PyCellObject *op) in cell_clear()
132 cell_get_contents(PyCellObject *op, void *closure) in cell_get_contents()
[all …]
/third_party/python/Include/
Dcellobject.h12 } PyCellObject; typedef
22 #define PyCell_GET(op) (((PyCellObject *)(op))->ob_ref)
23 #define PyCell_SET(op, v) ((void)(((PyCellObject *)(op))->ob_ref = v))
/third_party/python/Doc/c-api/
Dcell.rst18 .. c:type:: PyCellObject