Ignore:
Timestamp:
Mar 19, 2014, 11:31:01 PM (11 years ago)
Author:
dmik
Message:

python: Merge vendor 2.7.6 to trunk.

Location:
python/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • python/trunk

  • python/trunk/Doc/c-api/cell.rst

    r2 r391  
    1616
    1717
    18 .. ctype:: PyCellObject
     18.. c:type:: PyCellObject
    1919
    2020   The C structure used for cell objects.
    2121
    2222
    23 .. cvar:: PyTypeObject PyCell_Type
     23.. c:var:: PyTypeObject PyCell_Type
    2424
    2525   The type object corresponding to cell objects.
    2626
    2727
    28 .. cfunction:: int PyCell_Check(ob)
     28.. c:function:: int PyCell_Check(ob)
    2929
    3030   Return true if *ob* is a cell object; *ob* must not be *NULL*.
    3131
    3232
    33 .. cfunction:: PyObject* PyCell_New(PyObject *ob)
     33.. c:function:: PyObject* PyCell_New(PyObject *ob)
    3434
    3535   Create and return a new cell object containing the value *ob*. The parameter may
     
    3737
    3838
    39 .. cfunction:: PyObject* PyCell_Get(PyObject *cell)
     39.. c:function:: PyObject* PyCell_Get(PyObject *cell)
    4040
    4141   Return the contents of the cell *cell*.
    4242
    4343
    44 .. cfunction:: PyObject* PyCell_GET(PyObject *cell)
     44.. c:function:: PyObject* PyCell_GET(PyObject *cell)
    4545
    4646   Return the contents of the cell *cell*, but without checking that *cell* is
     
    4848
    4949
    50 .. cfunction:: int PyCell_Set(PyObject *cell, PyObject *value)
     50.. c:function:: int PyCell_Set(PyObject *cell, PyObject *value)
    5151
    5252   Set the contents of the cell object *cell* to *value*.  This releases the
     
    5656
    5757
    58 .. cfunction:: void PyCell_SET(PyObject *cell, PyObject *value)
     58.. c:function:: void PyCell_SET(PyObject *cell, PyObject *value)
    5959
    6060   Sets the value of the cell object *cell* to *value*.  No reference counts are
Note: See TracChangeset for help on using the changeset viewer.