diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-07-28 13:55:20 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-07-28 13:55:20 (GMT) |
commit | 4ddfd50d859fc16d9fa1b969c3760923dfb86617 (patch) | |
tree | 5a8d1192191a9126cabb8e7962b6fa2fb07401dc /Doc | |
parent | ce233b462dfa5b588cf8ae3343bfd673f8d3b2e3 (diff) | |
download | cpython-4ddfd50d859fc16d9fa1b969c3760923dfb86617.zip cpython-4ddfd50d859fc16d9fa1b969c3760923dfb86617.tar.gz cpython-4ddfd50d859fc16d9fa1b969c3760923dfb86617.tar.bz2 |
Fix SF bug 587012, doc mentions inexistent builtin unistr
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/api/abstract.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/api/abstract.tex b/Doc/api/abstract.tex index d27e383..3331dcc 100644 --- a/Doc/api/abstract.tex +++ b/Doc/api/abstract.tex @@ -166,8 +166,8 @@ for which they do not apply, they will raise a Python exception. Compute a Unicode string representation of object \var{o}. Returns the Unicode string representation on success, \NULL{} on failure. This is the equivalent of the Python expression - \samp{unistr(\var{o})}. Called by the - \function{unistr()}\bifuncindex{unistr} built-in function. + \samp{unicode(\var{o})}. Called by the + \function{unicode()}\bifuncindex{unicode} built-in function. \end{cfuncdesc} \begin{cfuncdesc}{int}{PyObject_IsInstance}{PyObject *inst, PyObject *cls} |