Mark _Py_char2wchar() input argument as constant

This commit is contained in:
Victor Stinner 2010-10-15 11:15:54 +00:00
parent d449a8ad87
commit 5d1e3438cd
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ extern "C" {
#endif
PyAPI_FUNC(wchar_t *) _Py_char2wchar(
char *arg);
const char *arg);
PyAPI_FUNC(char*) _Py_wchar2char(
const wchar_t *text);

View File

@ -17,7 +17,7 @@
PyMem_Free() to free the memory), or NULL on error (conversion error or
memory error). */
wchar_t*
_Py_char2wchar(char* arg)
_Py_char2wchar(const char* arg)
{
wchar_t *res;
#ifdef HAVE_BROKEN_MBSTOWCS