Le vendredi 03 septembre 2010 10:01:12, vous avez écrit : > > (...) > > About PyUnicode_strdup() (PyUnicode_AsUnicodeCopy): I don't know. It is > > possible to rewrite it in few lines. Why don't you want to add them to > > the public API? For my work, it doesn't matter if it's public or not. > > This function uses PyMem_xxx API, I don't know if a third part library > > would like to rely on PyMem_xxx. > > This will have to be documented (see PEP 384 for some reasoning on > malloc() use in DLLs).
It is already documented in unicodeobject.h. > Other than that, ok, let's have them. Ok. r84455 renames PyUnicode_strdup() to PyUnicode_AsUnicodeCopy(), and r84456 document it: ---------- .. cfunction:: Py_UNICODE* PyUnicode_AsUnicodeCopy(PyObject *unicode) Create a copy of a unicode string ending with a nul character. Return *NULL* and raise a :exc:`MemoryError` exception on memory allocation failure, otherwise return a new allocated buffer (use :cfunc:`PyMem_Free` to free the buffer). ---------- Thanks all for your review and advices ;-) -- Victor Stinner http://www.haypocalc.com/ _______________________________________________ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com