# HG changeset patch
# User Simon King <simon.king@uni-jena.de>
# Date 1358629875 -3600
# Node ID 05ebba10dfe1b8f2f93cdfe7a522986e0ae00a33
# Parent 996f7c4324eb60ed5e7a8b3e6beb8b9634264a44
#9107: Fix one cross reference in the documentation of a functorial construction
diff --git a/sage/categories/algebras_with_basis.py b/sage/categories/algebras_with_basis.py
a
|
b
|
|
433 | 433 | return [self.base_category()] |
434 | 434 | |
435 | 435 | class ParentMethods: |
436 | | @cached_method # todo: reinstate once #5843 is fixed |
| 436 | @cached_method |
437 | 437 | def one_from_cartesian_product_of_one_basis(self): |
438 | 438 | """ |
439 | 439 | Returns the one of this cartesian product of algebras, as per ``Monoids.ParentMethods.one`` |
440 | 440 | |
441 | 441 | It is constructed as the cartesian product of the ones of the |
442 | | summands, using their :meth:`.one_basis` methods. |
| 442 | summands, using their :meth:`~AlgebrasWithBasis.ParentMethods.one_basis` methods. |
443 | 443 | |
444 | 444 | This implementation does not require multiplication by |
445 | 445 | scalars nor calling cartesian_product. This might help keeping |