[Python-checkins] r78481 - python/branches/py3k/Objects/unicodeobject.c

gregory.p.smith python-checkins at python.org
Sat Feb 27 09:33:11 CET 2010


Author: gregory.p.smith
Date: Sat Feb 27 09:33:11 2010
New Revision: 78481

Log:
Update a comment with more details.


Modified:
   python/branches/py3k/Objects/unicodeobject.c

Modified: python/branches/py3k/Objects/unicodeobject.c
==============================================================================
--- python/branches/py3k/Objects/unicodeobject.c	(original)
+++ python/branches/py3k/Objects/unicodeobject.c	Sat Feb 27 09:33:11 2010
@@ -1609,7 +1609,8 @@
 }
 
 /* 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)


More information about the Python-checkins mailing list