Message330251
There is also:
commit cdbcb773f5db24e23fa90e644ec620d54bd08127
Author: Victor Stinner <[email protected]>
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. |
|
| Date |
User |
Action |
Args |
| 2018-11-22 12:31:22 | vstinner | set | recipients:
+ vstinner, loewis, terry.reedy, amaury.forgeotdarc, pitrou, schmir, janglin, flox, python-dev, steve.dower, Segev Finer |
| 2018-11-22 12:31:22 | vstinner | set | messageid: <[email protected]> |
| 2018-11-22 12:31:22 | vstinner | link | issue9566 messages |
| 2018-11-22 12:31:22 | vstinner | create | |
|