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 eryksun
Recipients eryksun, theller
Date 2018-02-01.20:51:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1517518267.07.0.467229070634.issue32745@psf.upfronthosting.co.za>
In-reply-to
Content
PyUnicode_AsWideCharString was updated to raise ValueError for embedded nulls if the `size` output parameter is NULL. Z_set in cfield.c should be updated to get the size, which can be ignored here. For example:

    Py_ssize_t size; 
    buffer = PyUnicode_AsWideCharString(value, &size);
History
Date User Action Args
2018-02-01 20:51:07eryksunsetrecipients: + eryksun, theller
2018-02-01 20:51:07eryksunsetmessageid: <1517518267.07.0.467229070634.issue32745@psf.upfronthosting.co.za>
2018-02-01 20:51:07eryksunlinkissue32745 messages
2018-02-01 20:51:07eryksuncreate