This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients serhiy.storchaka, steve.dower, vstinner
Date 2016-09-19.04:46:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1474260394.61.0.637343288097.issue28200@psf.upfronthosting.co.za>
In-reply-to
Content
Deprecated functions and types of the C API
-------------------------------------------

The :c:type:`Py_UNICODE` has been deprecated by :pep:`393` and will be
removed in Python 4. All functions using this type are deprecated:

Unicode functions and methods using :c:type:`Py_UNICODE` and
:c:type:`Py_UNICODE*` types:

* :c:macro:`PyUnicode_AS_UNICODE`, :c:func:`PyUnicode_AsUnicode`,
  :c:func:`PyUnicode_AsUnicodeAndSize`: use :c:func:`PyUnicode_AsWideCharString`

(From Doc/whatsnew/3.3.rst)
History
Date User Action Args
2016-09-19 04:46:34serhiy.storchakasetrecipients: + serhiy.storchaka, vstinner, steve.dower
2016-09-19 04:46:34serhiy.storchakasetmessageid: <1474260394.61.0.637343288097.issue28200@psf.upfronthosting.co.za>
2016-09-19 04:46:34serhiy.storchakalinkissue28200 messages
2016-09-19 04:46:34serhiy.storchakacreate