diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-12-17 03:59:06 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-12-17 03:59:06 (GMT) |
commit | ab595943268eebef43e71e2b79e58382c28bca70 (patch) | |
tree | c62bbea11e6683710fcf651e43c1609769517601 /Doc/whatsnew | |
parent | 1f33f2b0c381337d5991c227652d65eadd168209 (diff) | |
download | cpython-ab595943268eebef43e71e2b79e58382c28bca70.zip cpython-ab595943268eebef43e71e2b79e58382c28bca70.tar.gz cpython-ab595943268eebef43e71e2b79e58382c28bca70.tar.bz2 |
What's New in Python 3.3: complete the deprecation list
Add also FIXMEs in unicodeobject.c
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 843bfdf..4f54b69 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -798,6 +798,8 @@ Unicode functions and methods using :c:type:`Py_UNICODE` and strings) * :c:func:`PyUnicode_AsUnicodeCopy`: use :c:func:`PyUnicode_AsUCS4Copy` or :c:func:`PyUnicode_AsWideCharString` + * :c:func:`PyUnicode_GetMax` + Functions and macros manipulating Py_UNICODE* strings: @@ -813,6 +815,7 @@ Functions and macros manipulating Py_UNICODE* strings: * :c:macro:`Py_UNICODE_strchr`, :c:macro:`Py_UNICODE_strrchr`: use :c:func:`PyUnicode_FindChar` * :c:macro:`Py_UNICODE_FILL` + * :c:macro:`Py_UNICODE_MATCH` Encoders: |