Changeset 391 for python/trunk/Doc/c-api/cell.rst
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Doc/c-api/cell.rst
r2 r391 16 16 17 17 18 .. c type:: PyCellObject18 .. c:type:: PyCellObject 19 19 20 20 The C structure used for cell objects. 21 21 22 22 23 .. c var:: PyTypeObject PyCell_Type23 .. c:var:: PyTypeObject PyCell_Type 24 24 25 25 The type object corresponding to cell objects. 26 26 27 27 28 .. c function:: int PyCell_Check(ob)28 .. c:function:: int PyCell_Check(ob) 29 29 30 30 Return true if *ob* is a cell object; *ob* must not be *NULL*. 31 31 32 32 33 .. c function:: PyObject* PyCell_New(PyObject *ob)33 .. c:function:: PyObject* PyCell_New(PyObject *ob) 34 34 35 35 Create and return a new cell object containing the value *ob*. The parameter may … … 37 37 38 38 39 .. c function:: PyObject* PyCell_Get(PyObject *cell)39 .. c:function:: PyObject* PyCell_Get(PyObject *cell) 40 40 41 41 Return the contents of the cell *cell*. 42 42 43 43 44 .. c function:: PyObject* PyCell_GET(PyObject *cell)44 .. c:function:: PyObject* PyCell_GET(PyObject *cell) 45 45 46 46 Return the contents of the cell *cell*, but without checking that *cell* is … … 48 48 49 49 50 .. c function:: int PyCell_Set(PyObject *cell, PyObject *value)50 .. c:function:: int PyCell_Set(PyObject *cell, PyObject *value) 51 51 52 52 Set the contents of the cell object *cell* to *value*. This releases the … … 56 56 57 57 58 .. c function:: void PyCell_SET(PyObject *cell, PyObject *value)58 .. c:function:: void PyCell_SET(PyObject *cell, PyObject *value) 59 59 60 60 Sets the value of the cell object *cell* to *value*. No reference counts are
Note:
See TracChangeset
for help on using the changeset viewer.