From: Benjamin Peterson Date: Sat, 19 Jul 2014 23:34:33 +0000 (-0700) Subject: args doesn't need to be a tuple (closes #17210) X-Git-Tag: v3.4.2rc1~204 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=102488b644cceebb1a769a736f305f34e78abdc3;p=python args doesn't need to be a tuple (closes #17210) --- diff --git a/Doc/c-api/unicode.rst b/Doc/c-api/unicode.rst index 0f0419c121..4352351cca 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)