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/whatsnew | |
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/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 56a16da..ae275fc 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -769,8 +769,8 @@ Unicode functions and methods using :c:type:`Py_UNICODE` and * :c:macro:`PyUnicode_GET_DATA_SIZE`: use ``PyUnicode_GET_LENGTH(str) * PyUnicode_KIND(str)`` (only work on ready strings) - * :c:func:`PyUnicode_AsUnicodeCopy`: use :c:func:`PyUnicode_AsUCS4Copy`, - :c:func:`PyUnicode_AsWideCharString` or :c:func:`PyUnicode_Copy` + * :c:func:`PyUnicode_AsUnicodeCopy`: use :c:func:`PyUnicode_AsUCS4Copy` or + :c:func:`PyUnicode_AsWideCharString` Functions and macros manipulating Py_UNICODE* strings: |