[issue36299] Deprecate 'u' type in array module

2019-03-22 Thread Inada Naoki
Inada Naoki added the comment: I found converting Py_UNICODE to Py_UCS4 wad happened, and reverted. ref: https://bugs.python.org/issue13072 -- ___ Python tracker ___

[issue36299] Deprecate 'u' type in array module

2019-03-22 Thread Inada Naoki
Change by Inada Naoki : -- keywords: +patch pull_requests: +12447 stage: -> patch review ___ Python tracker ___ ___

[issue36299] Deprecate 'u' type in array module

2019-03-22 Thread Inada Naoki
Inada Naoki added the comment: https://mail.python.org/pipermail/python-dev/2019-March/156807.html We may able to convert 'u' to wchar_t to int32_t and un-deprecate it. -- ___ Python tracker

[issue36299] Deprecate 'u' type in array module

2019-03-15 Thread Terry J. Reedy
Terry J. Reedy added the comment: '4.0' is a stand-in for 'sometime after 2.7.final', scheduled for Jan 2020. A Pending... for 3.8.0, scheduled for Oct 2019, seems reasonable to me. Perhaps we should have a pydev discussion for the general issue of post 2.7 removals of already deprecated

[issue36299] Deprecate 'u' type in array module

2019-03-14 Thread Inada Naoki
New submission from Inada Naoki : The doc says: > 'u' will be removed together with the rest of the Py_UNICODE API. > Deprecated since version 3.3, will be removed in version 4.0. > https://docs.python.org/3/library/array.html But DeprecationWarning is not raised yet. Let's raise it. * 3.8