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

Commit 6e4c5be

Browse files
author
Frédéric Chapoton
committed
fix wrong import of gamma
1 parent e6cae6d commit 6e4c5be

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/sage/rings/asymptotic/asymptotics_multivariate_generating_functions.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1785,7 +1785,8 @@ def asymptotics_smooth(self, p, alpha, N, asy_var, coordinate=None,
17851785
"""
17861786
from sage.calculus.functions import jacobian
17871787
from sage.calculus.var import function
1788-
from sage.functions.other import factorial, gamma, sqrt
1788+
from sage.functions.other import factorial, sqrt
1789+
from sage.functions.gamma import gamma
17891790
from sage.functions.log import exp, log
17901791
from sage.matrix.constructor import matrix
17911792
from sage.modules.free_module_element import vector

0 commit comments

Comments
 (0)