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

Commit

Permalink
Merge branch 'u/mantepse/dense_lls-31897' of git://trac.sagemath.org/…
Browse files Browse the repository at this point in the history
…sage into t/32324/lazy_taylor_series
  • Loading branch information
mantepse committed Aug 12, 2021
2 parents 8317764 + a7026ea commit 4d6c23b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/rings/lazy_laurent_series.py
Original file line number Diff line number Diff line change
Expand Up @@ -1125,8 +1125,8 @@ def _acted_upon_(self, scalar, self_on_left):
order=v, constant=c,
degree=self._coeff_stream._degree))
if self_on_left or R.is_commutative():
return P.element_class(P, CoefficientStream_rmul(self._coeff_stream, scalar))
return P.element_class(P, CoefficientStream_lmul(self._coeff_stream, scalar))
return P.element_class(P, CoefficientStream_lmul(self._coeff_stream, scalar))
return P.element_class(P, CoefficientStream_rmul(self._coeff_stream, scalar))

def _neg_(self):
"""
Expand Down

0 comments on commit 4d6c23b

Please sign in to comment.