Py_ssize_t pos;
Py_ssize_t len = PyUnicode_GET_LENGTH(value);
PyObject *result = NULL;
- int maxchar = 127;
+ Py_UCS4 maxchar = 127;
/* sign is not allowed on strings */
if (format->sign != '\0') {
IntOrLongToString tostring)
{
PyObject *result = NULL;
- int maxchar = 127;
+ Py_UCS4 maxchar = 127;
PyObject *tmp = NULL;
Py_ssize_t inumeric_chars;
Py_UCS4 sign_char = '\0';
NumberFieldWidths spec;
int flags = 0;
PyObject *result = NULL;
- int maxchar = 127;
+ Py_UCS4 maxchar = 127;
Py_UCS4 sign_char = '\0';
int float_type; /* Used to see if we have a nan, inf, or regular float. */
PyObject *unicode_tmp = NULL;
NumberFieldWidths im_spec;
int flags = 0;
PyObject *result = NULL;
- int maxchar = 127;
+ Py_UCS4 maxchar = 127;
int rkind;
void *rdata;
Py_ssize_t index;