[issue41098] Deprecating PyUnicodeEncodeError_Create

2021-04-13 Thread Inada Naoki
Change by Inada Naoki : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue41098] Deprecating PyUnicodeEncodeError_Create

2020-08-07 Thread miss-islington
miss-islington added the comment: New changeset b2514c4934291364404a2bc78256b77026a80dff by Miss Islington (bot) in branch '3.9': bpo-41098: Doc: Add missing deprecated directives (GH-21162) https://github.com/python/cpython/commit/b2514c4934291364404a2bc78256b77026a80dff --

[issue41098] Deprecating PyUnicodeEncodeError_Create

2020-08-07 Thread miss-islington
miss-islington added the comment: New changeset dc98a5468a48ecffe95a6c3a07ce21366477bdd7 by Miss Islington (bot) in branch '3.8': bpo-41098: Doc: Add missing deprecated directives (GH-21162) https://github.com/python/cpython/commit/dc98a5468a48ecffe95a6c3a07ce21366477bdd7 --

[issue41098] Deprecating PyUnicodeEncodeError_Create

2020-08-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +20907 pull_request: https://github.com/python/cpython/pull/21762 ___ Python tracker ___

[issue41098] Deprecating PyUnicodeEncodeError_Create

2020-08-07 Thread Inada Naoki
Inada Naoki added the comment: New changeset 46e19b61d31ba99f049258efa4ff1334856a3643 by Inada Naoki in branch 'master': bpo-41098: Doc: Add missing deprecated directives (GH-21162) https://github.com/python/cpython/commit/46e19b61d31ba99f049258efa4ff1334856a3643 --

[issue41098] Deprecating PyUnicodeEncodeError_Create

2020-08-07 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 2.0 -> 3.0 pull_requests: +20906 pull_request: https://github.com/python/cpython/pull/21761 ___ Python tracker

[issue41098] Deprecating PyUnicodeEncodeError_Create

2020-06-25 Thread Emmanuel Arias
Emmanuel Arias added the comment: oops, I didn't see. Thanks -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue41098] Deprecating PyUnicodeEncodeError_Create

2020-06-25 Thread Inada Naoki
Inada Naoki added the comment: See #41099 for PyUnicodeTranslateError_Create. -- ___ Python tracker ___ ___ Python-bugs-list

[issue41098] Deprecating PyUnicodeEncodeError_Create

2020-06-25 Thread Emmanuel Arias
Emmanuel Arias added the comment: Yes, IMO in docs must exist a deprecated directive entry for `PyUnicodeEncodeError_Create`. Is the same situation with `PyUnicodeTranslateError_Create`, isn't? -- ___ Python tracker

[issue41098] Deprecating PyUnicodeEncodeError_Create

2020-06-25 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41098] Deprecating PyUnicodeEncodeError_Create

2020-06-25 Thread Inada Naoki
Change by Inada Naoki : -- keywords: +patch pull_requests: +20321 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21162 ___ Python tracker ___

[issue41098] Deprecating PyUnicodeEncodeError_Create

2020-06-24 Thread Inada Naoki
New submission from Inada Naoki : PyUnicodeEncodeError_Create is using Py_UNICODE and is marked Py_DEPRECATED(3.3). But it is not deprecated in doc yet. There are no alternative API. In CPython code base, UnicodeEncodeError is created by `PyObject_CallFunction(PyExc_UnicodeEncodeError,