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] |
Rename PyUnicode_strdup() to PyUnicode_AsUnicodeCopy()
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 80e2e63..9cdf90d 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c
@@ -10015,7 +10015,7 @@ } Py_UNICODE* -PyUnicode_strdup(PyObject *object) +PyUnicode_AsUnicodeCopy(PyObject *object) { PyUnicodeObject *unicode = (PyUnicodeObject *)object; Py_UNICODE *copy;