summaryrefslogtreecommitdiffstats
path: root/Doc/c-api
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-08-21 16:51:15 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-08-21 16:51:15 (GMT)
commitf9aefce634f2107454ffff4d6b092e01d04b89c8 (patch)
tree492984dbc8480d035641cd0fc8f96c8f4398df84 /Doc/c-api
parent8509df7f9d6816dc20620728f1a1799546372b51 (diff)
downloadcpython-f9aefce634f2107454ffff4d6b092e01d04b89c8.zip
cpython-f9aefce634f2107454ffff4d6b092e01d04b89c8.tar.gz
cpython-f9aefce634f2107454ffff4d6b092e01d04b89c8.tar.bz2
PyObject_Unicode doesn't exist anymore
Diffstat (limited to 'Doc/c-api')
-rw-r--r--Doc/c-api/object.rst10
1 files changed, 0 insertions, 10 deletions
diff --git a/Doc/c-api/object.rst b/Doc/c-api/object.rst
index 3eb83f5..193ab95 100644
--- a/Doc/c-api/object.rst
+++ b/Doc/c-api/object.rst
@@ -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