[2] | 1 | .. highlightlang:: c
|
---|
| 2 |
|
---|
| 3 | .. _cell-objects:
|
---|
| 4 |
|
---|
| 5 | Cell Objects
|
---|
| 6 | ------------
|
---|
| 7 |
|
---|
| 8 | "Cell" objects are used to implement variables referenced by multiple scopes.
|
---|
| 9 | For each such variable, a cell object is created to store the value; the local
|
---|
| 10 | variables of each stack frame that references the value contains a reference to
|
---|
| 11 | the cells from outer scopes which also use that variable. When the value is
|
---|
| 12 | accessed, the value contained in the cell is used instead of the cell object
|
---|
| 13 | itself. This de-referencing of the cell object requires support from the
|
---|
| 14 | generated byte-code; these are not automatically de-referenced when accessed.
|
---|
| 15 | Cell objects are not likely to be useful elsewhere.
|
---|
| 16 |
|
---|
| 17 |
|
---|
[391] | 18 | .. c:type:: PyCellObject
|
---|
[2] | 19 |
|
---|
| 20 | The C structure used for cell objects.
|
---|
| 21 |
|
---|
| 22 |
|
---|
[391] | 23 | .. c:var:: PyTypeObject PyCell_Type
|
---|
[2] | 24 |
|
---|
| 25 | The type object corresponding to cell objects.
|
---|
| 26 |
|
---|
| 27 |
|
---|
[391] | 28 | .. c:function:: int PyCell_Check(ob)
|
---|
[2] | 29 |
|
---|
| 30 | Return true if *ob* is a cell object; *ob* must not be *NULL*.
|
---|
| 31 |
|
---|
| 32 |
|
---|
[391] | 33 | .. c:function:: PyObject* PyCell_New(PyObject *ob)
|
---|
[2] | 34 |
|
---|
| 35 | Create and return a new cell object containing the value *ob*. The parameter may
|
---|
| 36 | be *NULL*.
|
---|
| 37 |
|
---|
| 38 |
|
---|
[391] | 39 | .. c:function:: PyObject* PyCell_Get(PyObject *cell)
|
---|
[2] | 40 |
|
---|
| 41 | Return the contents of the cell *cell*.
|
---|
| 42 |
|
---|
| 43 |
|
---|
[391] | 44 | .. c:function:: PyObject* PyCell_GET(PyObject *cell)
|
---|
[2] | 45 |
|
---|
| 46 | Return the contents of the cell *cell*, but without checking that *cell* is
|
---|
| 47 | non-*NULL* and a cell object.
|
---|
| 48 |
|
---|
| 49 |
|
---|
[391] | 50 | .. c:function:: int PyCell_Set(PyObject *cell, PyObject *value)
|
---|
[2] | 51 |
|
---|
| 52 | Set the contents of the cell object *cell* to *value*. This releases the
|
---|
| 53 | reference to any current content of the cell. *value* may be *NULL*. *cell*
|
---|
| 54 | must be non-*NULL*; if it is not a cell object, ``-1`` will be returned. On
|
---|
| 55 | success, ``0`` will be returned.
|
---|
| 56 |
|
---|
| 57 |
|
---|
[391] | 58 | .. c:function:: void PyCell_SET(PyObject *cell, PyObject *value)
|
---|
[2] | 59 |
|
---|
| 60 | Sets the value of the cell object *cell* to *value*. No reference counts are
|
---|
| 61 | adjusted, and no checks are made for safety; *cell* must be non-*NULL* and must
|
---|
| 62 | be a cell object.
|
---|