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

Commit

Permalink
src/sage/matrix/operation_table.py: Change non-symbolic use of log to…
Browse files Browse the repository at this point in the history
… import from sage.misc.functional
  • Loading branch information
Matthias Koeppe committed Oct 29, 2021
1 parent 6be920a commit 238e97e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/matrix/operation_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -540,8 +540,8 @@ def _name_maker(self, names):
...
ValueError: element names must be a list, or one of the keywords: 'letters', 'digits', 'elements'
"""
from sage.functions.log import log
name_list=[]
from sage.misc.functional import log
name_list = []
if names == 'digits':
if self._n == 0 or self._n == 1:
width = 1
Expand Down

0 comments on commit 238e97e

Please sign in to comment.