[issue17210] documentation of PyUnicode_Format() states wrong argument type requirements

2014-07-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9cd3ab7c09d1 by Benjamin Peterson in branch '2.7': args doesn't need to be a tuple (closes #17210) http://hg.python.org/cpython/rev/9cd3ab7c09d1 New changeset ffbbd43d7342 by Benjamin Peterson in branch '3.4': args doesn't need to be a tuple

[issue17210] documentation of PyUnicode_Format() states wrong argument type requirements

2014-07-17 Thread Mark Lawrence
Mark Lawrence added the comment: @Stefan could you provide a patch for this? -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 2.6, Python 3.2, Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17210

[issue17210] documentation of PyUnicode_Format() states wrong argument type requirements

2013-02-15 Thread Stefan Behnel
New submission from Stefan Behnel: The current documentation says: PyObject* PyUnicode_Format(PyObject *format, PyObject *args) Return value: New reference. Return a new string object from format and args; this is analogous to format % args. The args argument must be a tuple.