From 8f25762a9455882e87d06b0e1cfd11f92b1ab6fe Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sat, 19 Jul 2014 16:34:33 -0700 Subject: [PATCH] args doesn't need to be a tuple (closes #17210) --- Doc/c-api/unicode.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/c-api/unicode.rst b/Doc/c-api/unicode.rst index ddeaaa240b..4ef437c6ce 100644 --- a/Doc/c-api/unicode.rst +++ b/Doc/c-api/unicode.rst @@ -1108,7 +1108,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) -- 2.50.1