From f9aefce634f2107454ffff4d6b092e01d04b89c8 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Thu, 21 Aug 2008 16:51:15 +0000 Subject: [PATCH] PyObject_Unicode doesn't exist anymore --- Doc/c-api/object.rst | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Doc/c-api/object.rst b/Doc/c-api/object.rst index 3eb83f5463a..193ab958f47 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