[issue33195] PyArg_Parse* should deprecate 'u' and 'z' family.

2018-04-05 Thread INADA Naoki
INADA Naoki added the comment: New changeset 29bc6f6347b1e05b22180fd296013bb2a104d589 by INADA Naoki in branch '3.6': bpo-33195: Doc: Deprecate Py_UNICODE in c-api/arg (GH-6329) https://github.com/python/cpython/commit/29bc6f6347b1e05b22180fd296013bb2a104d589

[issue33195] PyArg_Parse* should deprecate 'u' and 'z' family.

2018-04-05 Thread INADA Naoki
Change by INADA Naoki : -- pull_requests: +6092 ___ Python tracker ___ ___

[issue33195] PyArg_Parse* should deprecate 'u' and 'z' family.

2018-04-04 Thread INADA Naoki
Change by INADA Naoki : -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue33195] PyArg_Parse* should deprecate 'u' and 'z' family.

2018-04-04 Thread INADA Naoki
Change by INADA Naoki : -- resolution: -> fixed ___ Python tracker ___ ___

[issue33195] PyArg_Parse* should deprecate 'u' and 'z' family.

2018-04-03 Thread miss-islington
miss-islington added the comment: New changeset b8fc2d658094941250116a48577f54d1f6300362 by Miss Islington (bot) in branch '3.7': bpo-33195: Doc: Deprecate Py_UNICODE in c-api/arg (GH-6329)

[issue33195] PyArg_Parse* should deprecate 'u' and 'z' family.

2018-04-03 Thread miss-islington
Change by miss-islington : -- pull_requests: +6080 ___ Python tracker ___

[issue33195] PyArg_Parse* should deprecate 'u' and 'z' family.

2018-04-03 Thread INADA Naoki
INADA Naoki added the comment: New changeset 42ec190761a2e8503aaa06f0bfaaabe98749179b by INADA Naoki in branch 'master': bpo-33195: Doc: Deprecate Py_UNICODE in c-api/arg (GH-6329) https://github.com/python/cpython/commit/42ec190761a2e8503aaa06f0bfaaabe98749179b

[issue33195] PyArg_Parse* should deprecate 'u' and 'z' family.

2018-04-03 Thread INADA Naoki
INADA Naoki added the comment: OK, I replaced Py_UNICODE with wchar_t in Py_BuildValue document. -- ___ Python tracker ___

[issue33195] PyArg_Parse* should deprecate 'u' and 'z' family.

2018-04-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: See also issue24009. We should get rid of using these units in the stdlib. I'm not sure about deprecating Py_BuildValue() units right now. They can be redefined in terms of wchar_t, and they are already implemented with

[issue33195] PyArg_Parse* should deprecate 'u' and 'z' family.

2018-03-31 Thread INADA Naoki
Change by INADA Naoki : -- keywords: +patch pull_requests: +6042 stage: -> patch review ___ Python tracker ___

[issue33195] PyArg_Parse* should deprecate 'u' and 'z' family.

2018-03-31 Thread INADA Naoki
New submission from INADA Naoki : https://docs.python.org/3/c-api/arg.html Py_UNICODE usage is not deprecated in this document. Before thinking about raising warning, deprecate it in document first. But... from when? Can I backport the "deprecated" doc to 3.6 or 3.5?