From eaec66fdc628786dd7d8ce5533ff4cdcf71c4f82 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 2 May 2026 07:45:18 +0530 Subject: [PATCH] Fix #9951 --- kitty/colors.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/colors.c b/kitty/colors.c index f2c41eb2d..79b51a3d8 100644 --- a/kitty/colors.c +++ b/kitty/colors.c @@ -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,