This commit is contained in:
Kovid Goyal 2026-05-02 07:45:18 +05:30
parent 04a9495221
commit eaec66fdc6
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

@ -1385,7 +1385,7 @@ PyTypeObject Color_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
.tp_name = "kitty.fast_data_types.Color",
.tp_basicsize = sizeof(Color),
.tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_VECTORCALL,
.tp_flags = Py_TPFLAGS_DEFAULT,
.tp_doc = "Color",
.tp_new = new_color,
.tp_vectorcall = color_vectorcall,