Files
cpython/Modules
Victor Stinner cdbcb773f5 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.
2018-11-22 10:25:46 +01:00
..
2016-10-18 16:29:27 +02:00
2016-10-18 16:29:27 +02:00
2016-09-06 10:46:49 -07:00
2017-11-08 14:44:44 -08:00

Source files for standard library extension modules,
and former extension modules that are now builtin modules.