6
我想從pysparse庫中添加一些額外的方法到矩陣類型。除此之外,我希望新類的行爲與原始類完全相同,所以我選擇使用繼承來實現更改。然而,當我嘗試Python:無法從C擴展繼承
from pysparse import spmatrix
class ll_mat(spmatrix.ll_mat):
pass
這將導致以下錯誤
TypeError: Error when calling the metaclass bases
cannot create 'builtin_function_or_method' instances
這是什麼導致這個錯誤?有沒有辦法使用委派,以便我的新類的行爲與原始方式完全相同?