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

Commit

Permalink
CallableSymbolicExpressionRing_class: Fix doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoeppe committed Jun 14, 2021
1 parent cfd813b commit 278aa2b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/sage/symbolic/callable.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,8 +295,9 @@ def _free_module_element_class_dense(self):
EXAMPLES::
sage: SR._free_module_element_class_dense()
<class 'sage.modules.vector_symbolic_dense.Vector_symbolic_dense'>
sage: f(x) = 1
sage: f.parent()._free_module_element_class_dense()
<class 'sage.modules.vector_callable_symbolic_dense.Vector_callable_symbolic_dense'>
"""
from sage.modules.vector_callable_symbolic_dense import Vector_callable_symbolic_dense
return Vector_callable_symbolic_dense
Expand Down

0 comments on commit 278aa2b

Please sign in to comment.