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

Commit 238e97e

Browse files
author
Matthias Koeppe
committed
src/sage/matrix/operation_table.py: Change non-symbolic use of log to import from sage.misc.functional
1 parent 6be920a commit 238e97e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/matrix/operation_table.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -540,8 +540,8 @@ def _name_maker(self, names):
540540
...
541541
ValueError: element names must be a list, or one of the keywords: 'letters', 'digits', 'elements'
542542
"""
543-
from sage.functions.log import log
544-
name_list=[]
543+
from sage.misc.functional import log
544+
name_list = []
545545
if names == 'digits':
546546
if self._n == 0 or self._n == 1:
547547
width = 1

0 commit comments

Comments
 (0)