commit | 46408606d80347108a6550805d29402d2771bda3 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@haypocalc.com> | Fri Sep 03 16:18:00 2010 +0000 |
committer | Victor Stinner <victor.stinner@haypocalc.com> | Fri Sep 03 16:18:00 2010 +0000 |
tree | 4e4f102c6752a1fcc10fc23c880cd194ddf335a2 | |
parent | 8b358e55db5a49970fd9f54684ed1ee21c17f54f [diff] [blame] |
Rename PyUnicode_strdup() to PyUnicode_AsUnicodeCopy()
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h index b6a7fca..0de0d66 100644 --- a/Include/unicodeobject.h +++ b/Include/unicodeobject.h
@@ -1607,7 +1607,7 @@ and raise a MemoryError exception on memory allocation failure, otherwise return a new allocated buffer (use PyMem_Free() to free the buffer). */ -PyAPI_FUNC(Py_UNICODE*) PyUnicode_strdup( +PyAPI_FUNC(Py_UNICODE*) PyUnicode_AsUnicodeCopy( PyObject *unicode );