mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
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:
commit
f44611cadf
4 changed files with 20 additions and 16 deletions
|
@ -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) &&
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue