fix(py): Change uintptr to int in container types

This commit is contained in:
AN Long
2024-08-12 21:56:57 +08:00
parent 321766fd46
commit 7237f549a6
3 changed files with 11 additions and 11 deletions

View File

@@ -58,6 +58,6 @@ func (d *Object) DictGetItem(key *Object) *Object { return nil }
// Return the number of items in the dictionary.
//
// llgo:link (*Object).DictSize C.PyDict_Size
func (d *Object) DictSize() uintptr { return 0 }
func (d *Object) DictSize() int { return 0 }
// -----------------------------------------------------------------------------