Fix PyUnicode_AsWideCharString() doc: size doesn't contain the null character

Fix also spelling of the null character.
This commit is contained in:
Victor Stinner 2011-09-06 02:00:05 +02:00
parent a1bea6e10c
commit d88d9836c5
2 changed files with 6 additions and 6 deletions

View file

@ -595,7 +595,7 @@ PyAPI_FUNC(Py_ssize_t) PyUnicode_AsWideChar(
/* Convert the Unicode object to a wide character string. The output string
always ends with a nul character. If size is not NULL, write the number of
wide characters (including the nul character) into *size.
wide characters (excluding the null character) into *size.
Returns a buffer allocated by PyMem_Alloc() (use PyMem_Free() to free it)
on success. On error, returns NULL, *size is undefined and raises a