silence compiler warnings on gcc 4.0.1 .
consts = co->co_consts;
fastlocals = f->f_localsplus;
freevars = f->f_localsplus + f->f_nlocals;
- first_instr = PyString_AS_STRING(co->co_code);
+ first_instr = (unsigned char *)PyString_AS_STRING(co->co_code);
/* An explanation is in order for the next line.
f->f_lasti now refers to the index of the last instruction
/* Bypass optimization when the lineno table is too complex */
assert(PyString_Check(lineno_obj));
- lineno = PyString_AS_STRING(lineno_obj);
+ lineno = (unsigned char *)PyString_AS_STRING(lineno_obj);
tabsiz = PyString_GET_SIZE(lineno_obj);
if (memchr(lineno, 255, tabsiz) != NULL)
goto exitUnchanged;