*/
PyObject *_PyUnicode_AsUTF8String(PyObject *unicode,
- const char *errors)
+ const char *errors)
{
PyObject *v = ((PyUnicodeObject *)unicode)->utf8str;
end = s + size;
while (s < end) {
unsigned char c;
- unsigned int x;
+ unsigned long x;
int i;
/* Non-escape characters are interpreted as Unicode ordinals */
end = s + size;
while (s < end) {
unsigned char c;
- unsigned int x;
+ unsigned long x;
int i;
/* Non-escape characters are interpreted as Unicode ordinals */
/* Apply mapping */
if (PyInt_Check(x)) {
- int value = PyInt_AS_LONG(x);
+ long value = PyInt_AS_LONG(x);
if (value < 0 || value > 65535) {
PyErr_SetString(PyExc_TypeError,
"character mapping must be in range(65536)");
/* Apply mapping */
if (PyInt_Check(x)) {
- int value = PyInt_AS_LONG(x);
+ long value = PyInt_AS_LONG(x);
if (value < 0 || value > 255) {
PyErr_SetString(PyExc_TypeError,
"character mapping must be in range(256)");
while (len1 > 0 && len2 > 0) {
unsigned short c1, c2; /* 16 bits */
- int diff; /* 32 bits */
+ long diff; /* >=32 bits */
c1 = *s1++;
c2 = *s2++;
c2 += utf16Fixup[c2>>11];
/* now c1 and c2 are in UTF-32-compatible order */
- diff = (int)c1 - (int)c2;
+ diff = (long)c1 - (long)c2;
if (diff)
return (diff < 0) ? -1 : (diff != 0);
len1--; len2--;