diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-12-12 00:53:47 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-12-12 00:53:47 (GMT) |
commit | bf6e560d0ccbe6bee4d835a15a8e8e098b9c7ef6 (patch) | |
tree | 42ccc12a1177bb5450efd6bd854f0ded5463e333 /Doc/c-api | |
parent | 7a9105a380779942bfe45936d074c8181dee14d9 (diff) | |
download | cpython-bf6e560d0ccbe6bee4d835a15a8e8e098b9c7ef6.zip cpython-bf6e560d0ccbe6bee4d835a15a8e8e098b9c7ef6.tar.gz cpython-bf6e560d0ccbe6bee4d835a15a8e8e098b9c7ef6.tar.bz2 |
Make PyUnicode_Copy() private => _PyUnicode_Copy()
Undocument the function.
Make also decode_utf8_errors() as private (static).
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/unicode.rst | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Doc/c-api/unicode.rst b/Doc/c-api/unicode.rst index 65d4af5..81ed540 100644 --- a/Doc/c-api/unicode.rst +++ b/Doc/c-api/unicode.rst @@ -386,13 +386,6 @@ APIs: .. versionadded:: 3.3 -.. c:function:: PyObject* PyUnicode_Copy(PyObject *unicode) - - Get a new copy of a Unicode object. - - .. versionadded:: 3.3 - - .. c:function:: PyObject* PyUnicode_FromKindAndData(int kind, const void *buffer, \ Py_ssize_t size) |