假设您为python编写了一个C++ (或C)扩展,名为module。它返回一个数组。返回的数组及其数组应该以什么作为引用计数?python代码将类似于from sys import getrefcount as g # will use to check reference count(在为g添加一个以引用x之后)
在我的C++扩展中,我已经确保数组及其所有子集合及其元素在返回到python</e
我已经编写了一个代码来打印名称的id和list的元素。print(f"The id of the name of the list is = {id(sample_list)}") print(f"Id of element index {i} is {id(sample_list[i])}")The id of the name of the list is = 2874211984576
Id of ele