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

Commit

Permalink
Fixed change ring to ensure that the original implementation remains.
Browse files Browse the repository at this point in the history
  • Loading branch information
tejasvicsr1 committed Jun 13, 2021
1 parent 7b231ec commit 974b361
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/rings/lazy_laurent_series.py
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ def change_ring(self, ring):
c = None

from .lazy_laurent_series_ring import LazyLaurentSeriesRing
Q = LazyLaurentSeriesRing(ring, names=R.variable_name())
Q = LazyLaurentSeriesRing(ring, names=R.variable_name(), implementation=R._implementation)
return Q.element_class(Q, coefficient=op, valuation=a, constant=c)

def truncate(self, d):
Expand Down

0 comments on commit 974b361

Please sign in to comment.