Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
src/sage/modules/free_module_element.pyx: Move import from sage.misc.…
Browse files Browse the repository at this point in the history
…derivative into method
  • Loading branch information
Matthias Koeppe committed Sep 30, 2021
1 parent 1b0a5ab commit 83b5038
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/modules/free_module_element.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ from sage.rings.infinity import Infinity, AnInfinity
from sage.rings.integer_ring import ZZ
from sage.rings.real_double import RDF
from sage.rings.complex_double import CDF
from sage.misc.derivative import multi_derivative

from sage.rings.ring cimport Ring
from sage.rings.integer cimport Integer, smallInteger
Expand Down Expand Up @@ -3968,6 +3967,7 @@ cdef class FreeModuleElement(Vector): # abstract base class
sage: v.derivative(x,x)
(0, 0, 2)
"""
from sage.misc.derivative import multi_derivative
return multi_derivative(self, args)
diff = derivative
Expand Down

0 comments on commit 83b5038

Please sign in to comment.