diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-09-03 22:13:42 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-09-03 22:13:42 (GMT) |
commit | 2b19f35786b2ecde5036e57202e387d5fc018247 (patch) | |
tree | 5c0968e7b145d280a91e8eecdfb6abb5a3bb85cc /Doc | |
parent | 1670b431b341bc451ab31c53a2229b8faaddd82e (diff) | |
download | cpython-2b19f35786b2ecde5036e57202e387d5fc018247.zip cpython-2b19f35786b2ecde5036e57202e387d5fc018247.tar.gz cpython-2b19f35786b2ecde5036e57202e387d5fc018247.tar.bz2 |
Add versionadded tag to PyUnicode_AsUnicodeCopy's doc
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/c-api/unicode.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/c-api/unicode.rst b/Doc/c-api/unicode.rst index 07e4d01..a4ee03a 100644 --- a/Doc/c-api/unicode.rst +++ b/Doc/c-api/unicode.rst @@ -342,6 +342,8 @@ APIs: otherwise return a new allocated buffer (use :cfunc:`PyMem_Free` to free the buffer). + .. versionadded:: 3.2 + .. cfunction:: Py_ssize_t PyUnicode_GetSize(PyObject *unicode) |