diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-07-19 23:34:33 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-07-19 23:34:33 (GMT) |
commit | 102488b644cceebb1a769a736f305f34e78abdc3 (patch) | |
tree | ac2a7ef464146d1a8c1c1af87c163f8299361620 /Doc/c-api/unicode.rst | |
parent | e004c6cad590c973faabb5e278eab2ae768b214f (diff) | |
download | cpython-102488b644cceebb1a769a736f305f34e78abdc3.zip cpython-102488b644cceebb1a769a736f305f34e78abdc3.tar.gz cpython-102488b644cceebb1a769a736f305f34e78abdc3.tar.bz2 |
args doesn't need to be a tuple (closes #17210)
Diffstat (limited to 'Doc/c-api/unicode.rst')
-rw-r--r-- | Doc/c-api/unicode.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/unicode.rst b/Doc/c-api/unicode.rst index 0f0419c..4352351 100644 --- a/Doc/c-api/unicode.rst +++ b/Doc/c-api/unicode.rst @@ -1646,7 +1646,7 @@ They all return *NULL* or ``-1`` if an exception occurs. .. c:function:: PyObject* PyUnicode_Format(PyObject *format, PyObject *args) Return a new string object from *format* and *args*; this is analogous to - ``format % args``. The *args* argument must be a tuple. + ``format % args``. .. c:function:: int PyUnicode_Contains(PyObject *container, PyObject *element) |