PyObject_Unicode doesn't exist anymore

This commit is contained in:
Benjamin Peterson 2008-08-21 16:51:15 +00:00
parent 8509df7f9d
commit f9aefce634
1 changed files with 0 additions and 10 deletions

View File

@ -140,16 +140,6 @@ Object Protocol
and, therefore, by the :func:`print` function.
.. cfunction:: PyObject* PyObject_Unicode(PyObject *o)
.. index:: builtin: unicode
Compute a Unicode string representation of object *o*. Returns the Unicode
string representation on success, *NULL* on failure. This is the equivalent of
the Python expression ``unicode(o)``. Called by the :func:`unicode` built-in
function.
.. cfunction:: int PyObject_IsInstance(PyObject *inst, PyObject *cls)
Returns ``1`` if *inst* is an instance of the class *cls* or a subclass of