bpo-41098: Doc: Add missing deprecated directives (GH-21162)
PyUnicodeEncodeError_Create has been deprecated with
`Py_DEPRECATED` macro. But it was not documented.
(cherry picked from commit 46e19b61d3
)
Co-authored-by: Inada Naoki <songofacandy@gmail.com>
This commit is contained in:
parent
713ba03276
commit
dc98a5468a
|
@ -635,11 +635,21 @@ The following functions are used to create and modify Unicode exceptions from C.
|
||||||
*object*, *length*, *start*, *end* and *reason*. *encoding* and *reason* are
|
*object*, *length*, *start*, *end* and *reason*. *encoding* and *reason* are
|
||||||
UTF-8 encoded strings.
|
UTF-8 encoded strings.
|
||||||
|
|
||||||
|
.. deprecated:: 3.3 3.11
|
||||||
|
|
||||||
|
``Py_UNICODE`` is deprecated since Python 3.3. Please migrate to
|
||||||
|
``PyObject_CallFunction(PyExc_UnicodeEncodeError, "sOnns", ...)``.
|
||||||
|
|
||||||
.. c:function:: PyObject* PyUnicodeTranslateError_Create(const Py_UNICODE *object, Py_ssize_t length, Py_ssize_t start, Py_ssize_t end, const char *reason)
|
.. c:function:: PyObject* PyUnicodeTranslateError_Create(const Py_UNICODE *object, Py_ssize_t length, Py_ssize_t start, Py_ssize_t end, const char *reason)
|
||||||
|
|
||||||
Create a :class:`UnicodeTranslateError` object with the attributes *object*,
|
Create a :class:`UnicodeTranslateError` object with the attributes *object*,
|
||||||
*length*, *start*, *end* and *reason*. *reason* is a UTF-8 encoded string.
|
*length*, *start*, *end* and *reason*. *reason* is a UTF-8 encoded string.
|
||||||
|
|
||||||
|
.. deprecated:: 3.3 3.11
|
||||||
|
|
||||||
|
``Py_UNICODE`` is deprecated since Python 3.3. Please migrate to
|
||||||
|
``PyObject_CallFunction(PyExc_UnicodeTranslateError, "Onns", ...)``.
|
||||||
|
|
||||||
.. c:function:: PyObject* PyUnicodeDecodeError_GetEncoding(PyObject *exc)
|
.. c:function:: PyObject* PyUnicodeDecodeError_GetEncoding(PyObject *exc)
|
||||||
PyObject* PyUnicodeEncodeError_GetEncoding(PyObject *exc)
|
PyObject* PyUnicodeEncodeError_GetEncoding(PyObject *exc)
|
||||||
|
|
||||||
|
|
|
@ -148,7 +148,10 @@ PyAPI_FUNC(PyObject *) PyErr_ProgramTextObject(
|
||||||
PyObject *filename,
|
PyObject *filename,
|
||||||
int lineno);
|
int lineno);
|
||||||
|
|
||||||
/* Create a UnicodeEncodeError object */
|
/* Create a UnicodeEncodeError object.
|
||||||
|
*
|
||||||
|
* TODO: This API will be removed in Python 3.11.
|
||||||
|
*/
|
||||||
Py_DEPRECATED(3.3) PyAPI_FUNC(PyObject *) PyUnicodeEncodeError_Create(
|
Py_DEPRECATED(3.3) PyAPI_FUNC(PyObject *) PyUnicodeEncodeError_Create(
|
||||||
const char *encoding, /* UTF-8 encoded string */
|
const char *encoding, /* UTF-8 encoded string */
|
||||||
const Py_UNICODE *object,
|
const Py_UNICODE *object,
|
||||||
|
@ -158,7 +161,10 @@ Py_DEPRECATED(3.3) PyAPI_FUNC(PyObject *) PyUnicodeEncodeError_Create(
|
||||||
const char *reason /* UTF-8 encoded string */
|
const char *reason /* UTF-8 encoded string */
|
||||||
);
|
);
|
||||||
|
|
||||||
/* Create a UnicodeTranslateError object */
|
/* Create a UnicodeTranslateError object.
|
||||||
|
*
|
||||||
|
* TODO: This API will be removed in Python 3.11.
|
||||||
|
*/
|
||||||
Py_DEPRECATED(3.3) PyAPI_FUNC(PyObject *) PyUnicodeTranslateError_Create(
|
Py_DEPRECATED(3.3) PyAPI_FUNC(PyObject *) PyUnicodeTranslateError_Create(
|
||||||
const Py_UNICODE *object,
|
const Py_UNICODE *object,
|
||||||
Py_ssize_t length,
|
Py_ssize_t length,
|
||||||
|
|
Loading…
Reference in New Issue