[Python-3000-checkins] r65932 - python/branches/py3k/Doc/c-api/object.rst
benjamin.peterson
python-3000-checkins at python.org
Thu Aug 21 18:51:16 CEST 2008
Author: benjamin.peterson
Date: Thu Aug 21 18:51:15 2008
New Revision: 65932
Log:
PyObject_Unicode doesn't exist anymore
Modified:
python/branches/py3k/Doc/c-api/object.rst
Modified: python/branches/py3k/Doc/c-api/object.rst
==============================================================================
--- python/branches/py3k/Doc/c-api/object.rst (original)
+++ python/branches/py3k/Doc/c-api/object.rst Thu Aug 21 18:51:15 2008
@@ -140,16 +140,6 @@
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
More information about the Python-3000-checkins
mailing list