Commit 8f25762a authored by Benjamin Peterson's avatar Benjamin Peterson

args doesn't need to be a tuple (closes #17210)

parent 70beff11
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment