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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cc47d8c8d4e9cdc6829d4bb7813564f476322247;p=python Update a comment with more details. --- diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 79b0aa7457..3ee90b58dd 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)