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

Commit

Permalink
Merged branch
Browse files Browse the repository at this point in the history
  • Loading branch information
tejasvicsr1 committed Aug 9, 2021
2 parents cd9da2a + 664e35a commit 8d6ac7b
Show file tree
Hide file tree
Showing 11 changed files with 2,478 additions and 914 deletions.
1 change: 1 addition & 0 deletions src/doc/en/reference/data_structures/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Data Structures
sage/misc/binary_tree
sage/data_structures/bitset
sage/data_structures/bounded_integer_sequences
sage/data_structures/coefficient_stream
sage/data_structures/mutable_poset

.. include:: ../footer.txt
1 change: 0 additions & 1 deletion src/doc/en/reference/power_series/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ Power Series Rings and Laurent Series Rings

sage/rings/lazy_laurent_series
sage/rings/lazy_laurent_series_ring
sage/rings/lazy_laurent_series_operator

sage/rings/puiseux_series_ring
sage/rings/puiseux_series_ring_element
Expand Down
2 changes: 1 addition & 1 deletion src/sage/categories/unital_algebras.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def _coerce_map_from_base_ring(self):
if from_base_ring.__func__ != generic_from_base_ring:
# Custom from_base_ring()
use_from_base_ring = True
if isinstance(generic_from_base_ring, lazy_attribute):
elif isinstance(generic_from_base_ring, lazy_attribute):
# If the category implements from_base_ring() as lazy
# attribute, then we always use it.
# This is for backwards compatibility, see Trac #25181
Expand Down
Loading

0 comments on commit 8d6ac7b

Please sign in to comment.