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/bool.rst

    r2 r391  
    1212
    1313
    14 .. cfunction:: int PyBool_Check(PyObject *o)
     14.. c:function:: int PyBool_Check(PyObject *o)
    1515
    16    Return true if *o* is of type :cdata:`PyBool_Type`.
     16   Return true if *o* is of type :c:data:`PyBool_Type`.
    1717
    1818   .. versionadded:: 2.3
    1919
    2020
    21 .. cvar:: PyObject* Py_False
     21.. c:var:: PyObject* Py_False
    2222
    2323   The Python ``False`` object.  This object has no methods.  It needs to be
     
    2525
    2626
    27 .. cvar:: PyObject* Py_True
     27.. c:var:: PyObject* Py_True
    2828
    2929   The Python ``True`` object.  This object has no methods.  It needs to be treated
     
    3131
    3232
    33 .. cmacro:: Py_RETURN_FALSE
     33.. c:macro:: Py_RETURN_FALSE
    3434
    3535   Return :const:`Py_False` from a function, properly incrementing its reference
     
    3939
    4040
    41 .. cmacro:: Py_RETURN_TRUE
     41.. c:macro:: Py_RETURN_TRUE
    4242
    4343   Return :const:`Py_True` from a function, properly incrementing its reference
     
    4747
    4848
    49 .. cfunction:: PyObject* PyBool_FromLong(long v)
     49.. c:function:: PyObject* PyBool_FromLong(long v)
    5050
    5151   Return a new reference to :const:`Py_True` or :const:`Py_False` depending on the
Note: See TracChangeset for help on using the changeset viewer.