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 vstinner
Recipients Segev Finer, amaury.forgeotdarc, flox, janglin, loewis, pitrou, python-dev, schmir, steve.dower, terry.reedy, vstinner
Date 2018-11-22.12:31:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1542889882.51.0.788709270274.issue9566@psf.upfronthosting.co.za>
In-reply-to
Content
There is also:

commit cdbcb773f5db24e23fa90e644ec620d54bd08127
Author: Victor Stinner <vstinner@redhat.com>
Date:   Thu Nov 22 10:25:46 2018 +0100

    cjkcodecs: Fix compiler warning (GH-10651)
    
    Fixed the following compiler warning in multibytecodec.c:
    
        warning C4244: '=': conversion from 'Py_ssize_t'
        to 'unsigned char', possible loss of data
    
    Cast Py_ssize_t to unsigned char: the maximum value is checked
    on the previous line.
History
Date User Action Args
2018-11-22 12:31:22vstinnersetrecipients: + vstinner, loewis, terry.reedy, amaury.forgeotdarc, pitrou, schmir, janglin, flox, python-dev, steve.dower, Segev Finer
2018-11-22 12:31:22vstinnersetmessageid: <1542889882.51.0.788709270274.issue9566@psf.upfronthosting.co.za>
2018-11-22 12:31:22vstinnerlinkissue9566 messages
2018-11-22 12:31:22vstinnercreate