Issue #21580: Now Tkinter correctly handles bytes arguments passed to Tk.

In particular this allows to initialize images from binary data.
This commit is contained in:
Serhiy Storchaka 2014-07-30 18:34:01 +03:00
commit f44611cadf
4 changed files with 20 additions and 16 deletions

View file

@ -901,8 +901,8 @@ AsObj(PyObject *value)
int overflow;
if (PyBytes_Check(value))
return Tcl_NewStringObj(PyBytes_AS_STRING(value),
PyBytes_GET_SIZE(value));
return Tcl_NewByteArrayObj((unsigned char *)PyBytes_AS_STRING(value),
PyBytes_GET_SIZE(value));
else if (PyBool_Check(value))
return Tcl_NewBooleanObj(PyObject_IsTrue(value));
else if (PyLong_CheckExact(value) &&