From: Gregory P. Smith Date: Sat, 27 Feb 2010 08:33:11 +0000 (+0000) Subject: Update a comment with more details. X-Git-Tag: v3.2a1~1616 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cc47d8c8d4e9cdc6829d4bb7813564f476322247;p=thirdparty%2FPython%2Fcpython.git Update a comment with more details. --- diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 79b0aa7457a9..3ee90b58ddb7 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -1609,7 +1609,8 @@ PyUnicode_DecodeFSDefaultAndSize(const char *s, Py_ssize_t size) } /* Convert the argument to a bytes object, according to the file - system encoding */ + system encoding. The addr param must be a PyObject**. + This is designed to be used with "O&" in PyArg_Parse APIs. */ int PyUnicode_FSConverter(PyObject* arg, void* addr)