We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbf1b9b commit 3e9ad77Copy full SHA for 3e9ad77
symengine/lib/symengine_wrapper.pyx
@@ -43,7 +43,7 @@ cpdef object capsule_to_basic(object capsule):
43
cdef CRCPBasic *p = <CRCPBasic*>PyCapsule_GetPointer(capsule, NULL)
44
return c2py(p.m)
45
46
-cpdef void basic_to_capsule(object capsule, object basic):
+cpdef void assign_to_capsule(object capsule, object basic):
47
cdef CRCPBasic *p_cap = <CRCPBasic*>PyCapsule_GetPointer(capsule, NULL)
48
cdef Basic v = sympify(basic)
49
p_cap.m = v.thisptr
0 commit comments