[Python-Dev] Chose a name for a "get unicode as wide character, borrowed reference" function
Victor Stinner
victor.stinner at haypocalc.com
Mon Nov 21 12:53:17 CET 2011
More information about the Python-Dev mailing list
Mon Nov 21 12:53:17 CET 2011
- Previous message: [Python-Dev] Promoting Python 3 [was: PyPy 1.7 - widening the sweet spot]
- Next message: [Python-Dev] Chose a name for a "get unicode as wide character, borrowed reference" function
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hi, With the PEP 393, the Py_UNICODE is now deprecated and scheduled for removal in Python 4. PyUnicode_AsUnicode() and PyUnicode_AsUnicodeAndSize() functions are still commonly used on Windows to get the string as wchar_t* without having to care of freeing the memory: it's a borrowed reference (pointer). I would like to add a new PyUnicode_AsWideChar() function which would return the borrowed reference, exactly as PyUnicode_AsUnicode(). The problem is that "PyUnicode_AsWideChar" already exists in Python 3.2, as PyUnicode_AsWideCharString. Do you have an suggestion for a name of such function? PyUnicode_AsWideCharBorrowed? PyUnicode_AsFastWideChar? PyUnicode_ToWideChar? PyUnicode_AsWchar_t? Victor
- Previous message: [Python-Dev] Promoting Python 3 [was: PyPy 1.7 - widening the sweet spot]
- Next message: [Python-Dev] Chose a name for a "get unicode as wide character, borrowed reference" function
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-Dev mailing list