Skip to content

Commit d4115b1

Browse files
committed
Argument name basic -> value
1 parent 3e9ad77 commit d4115b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

symengine/lib/symengine_wrapper.pyx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ cpdef object capsule_to_basic(object capsule):
4343
cdef CRCPBasic *p = <CRCPBasic*>PyCapsule_GetPointer(capsule, NULL)
4444
return c2py(p.m)
4545

46-
cpdef void assign_to_capsule(object capsule, object basic):
46+
cpdef void assign_to_capsule(object capsule, object value):
4747
cdef CRCPBasic *p_cap = <CRCPBasic*>PyCapsule_GetPointer(capsule, NULL)
48-
cdef Basic v = sympify(basic)
48+
cdef Basic v = sympify(value)
4949
p_cap.m = v.thisptr
5050

5151
cdef object c2py(rcp_const_basic o):

0 commit comments

Comments
 (0)