Message107607
"PyUnicodeObject*" is not the best choice for the description of the function, and I don't really like "PyUnicode". Can't we use C types in the function prototype and Python types in the description?
Example:
-------
s (PyUnicodeObject* or None) [char *]
Convert a null-terminated C string to a Python unicode object using 'utf-8' encoding. If the C string pointer is NULL, None is used.
-----
PyUnicodeObject will be a link to the C type, and unicode a link to the Python type. |
|
Date |
User |
Action |
Args |
2010-06-11 23:37:51 | vstinner | set | recipients:
+ vstinner, lemburg, fdrake, mark.dickinson, pitrou, eric.araujo, docs@python |
2010-06-11 23:37:51 | vstinner | set | messageid: <1276299471.66.0.980607607084.issue8939@psf.upfronthosting.co.za> |
2010-06-11 23:37:50 | vstinner | link | issue8939 messages |
2010-06-11 23:37:50 | vstinner | create | |
|