in order to match its documentation.
Extension Modules
-----------------
+- Change binascii.hexlify() to accept any read-only buffer and not just a char
+ buffer.
+
- Fixed a potentially invalid memory access of CJKCodecs' shift-jis decoder.
- Calling Tk_Init twice is refused if the first call failed as that
char* retbuf;
int i, j;
- if (!PyArg_ParseTuple(args, "t#:b2a_hex", &argbuf, &arglen))
+ if (!PyArg_ParseTuple(args, "s#:b2a_hex", &argbuf, &arglen))
return NULL;
retval = PyString_FromStringAndSize(NULL, arglen*2);