mirror of
https://github.com/python/cpython.git
synced 2024-11-24 10:24:35 +08:00
James Henstridge pointed out a misleading comment.
This commit is contained in:
parent
1a54d71550
commit
3131679241
@ -384,24 +384,20 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
|
||||
|
||||
int PyObject_IsTrue(PyObject *o);
|
||||
|
||||
Returns 1 if the object, o, is considered to be true, and
|
||||
0 otherwise. This is equivalent to the Python expression:
|
||||
not not o
|
||||
Returns 1 if the object, o, is considered to be true, 0 if o is
|
||||
considered to be false and -1 on failure. This is equivalent to the
|
||||
Python expression: not not o
|
||||
|
||||
This function always succeeds.
|
||||
|
||||
*/
|
||||
|
||||
/* Implemented elsewhere:
|
||||
|
||||
int PyObject_Not(PyObject *o);
|
||||
|
||||
Returns 0 if the object, o, is considered to be true, and
|
||||
1 otherwise. This is equivalent to the Python expression:
|
||||
not o
|
||||
Returns 0 if the object, o, is considered to be true, 1 if o is
|
||||
considered to be false and -1 on failure. This is equivalent to the
|
||||
Python expression: not o
|
||||
|
||||
This function always succeeds.
|
||||
|
||||
*/
|
||||
|
||||
PyAPI_FUNC(PyObject *) PyObject_Type(PyObject *o);
|
||||
|
Loading…
Reference in New Issue
Block a user