This commit is contained in:
Michael Droettboom 2018-08-03 12:49:08 -04:00
parent 779da3cd4e
commit 58652fef5d
1 changed files with 9 additions and 9 deletions

View File

@ -134,15 +134,15 @@ python2js_int(PyObject* x)
int data = (int)PyUnicode_DATA(x); int data = (int)PyUnicode_DATA(x);
int length = (int)PyUnicode_GET_LENGTH(x); int length = (int)PyUnicode_GET_LENGTH(x);
switch (kind) { switch (kind) {
case PyUnicode_1BYTE_KIND: case PyUnicode_1BYTE_KIND:
return hiwire_string_ucs1(data, length); return hiwire_string_ucs1(data, length);
case PyUnicode_2BYTE_KIND: case PyUnicode_2BYTE_KIND:
return hiwire_string_ucs2(data, length); return hiwire_string_ucs2(data, length);
case PyUnicode_4BYTE_KIND: case PyUnicode_4BYTE_KIND:
return hiwire_string_ucs4(data, length); return hiwire_string_ucs4(data, length);
default: default:
PyErr_SetString(PyExc_ValueError, "Unknown Unicode KIND"); PyErr_SetString(PyExc_ValueError, "Unknown Unicode KIND");
return -1; return -1;
} }
} else if (PyBytes_Check(x)) { } else if (PyBytes_Check(x)) {
char* x_buff; char* x_buff;