summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-08-21 16:51:15 +0000
committerBenjamin Peterson <benjamin@python.org>2008-08-21 16:51:15 +0000
commita25f92ca758da253c944ce3cce9095aa420e04e9 (patch)
treeba10bc98d22d4cda33354723293dca61306ee2af
parent2d1c22df1169cda838754e5984bafa0f5ba207fc (diff)
downloadcpython-a25f92ca758da253c944ce3cce9095aa420e04e9.tar.gz
PyObject_Unicode doesn't exist anymore
-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 3eb83f5463..193ab958f4 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