From 21553070e603ae86f7cf4dc4689d3762b528faea Mon Sep 17 00:00:00 2001 From: Micro Liu Date: Fri, 3 Oct 2025 08:29:07 +0800 Subject: [PATCH] py: modify object struct to zero size --- py/object.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/object.go b/py/object.go index d306476..6991d83 100644 --- a/py/object.go +++ b/py/object.go @@ -26,7 +26,7 @@ import ( // Object represents a Python object. type Object struct { - Unused [8]byte + Unused [0]byte } // llgo:link (*Object).DecRef C.Py_DecRef