summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/arg.rst
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-12-01 01:52:55 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-12-01 01:52:55 (GMT)
commit3ba82aa765fc1a176603ca00b447aafe583ae5a0 (patch)
tree53b8ff3cf4545dcb2902bb3be8548bd86c660a56 /Doc/c-api/arg.rst
parentee450093a9cebf99f186f69a14c7c36ff23b5b00 (diff)
downloadcpython-3ba82aa765fc1a176603ca00b447aafe583ae5a0.zip
cpython-3ba82aa765fc1a176603ca00b447aafe583ae5a0.tar.gz
cpython-3ba82aa765fc1a176603ca00b447aafe583ae5a0.tar.bz2
c-api: Replace PyUnicodeObject* by PyObject* in "U" format doc
Diffstat (limited to 'Doc/c-api/arg.rst')
-rw-r--r--Doc/c-api/arg.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/arg.rst b/Doc/c-api/arg.rst
index a171ac7..196aa77 100644
--- a/Doc/c-api/arg.rst
+++ b/Doc/c-api/arg.rst
@@ -146,7 +146,7 @@ Unless otherwise stated, buffers are not NUL-terminated.
Like ``u#``, but the Python object may also be ``None``, in which case the
:c:type:`Py_UNICODE` pointer is set to *NULL*.
-``U`` (:class:`str`) [PyUnicodeObject \*]
+``U`` (:class:`str`) [PyObject \*]
Requires that the Python object is a Unicode object, without attempting
any conversion. Raises :exc:`TypeError` if the object is not a Unicode
object. The C variable may also be declared as :c:type:`PyObject\*`.