# HG changeset patch
# User William Stein <wstein@gmail.com>
# Date 1225396004 25200
# Node ID 3378de9aaeb492d9a6334a91ee81d9db8a51af62
# Parent c4a14e85215fbd049c9e1882a94f1823db35bb6a
trac #4393 -- magma related optional doctest failure in sage/structure/element.pyx
diff -r c4a14e85215f -r 3378de9aaeb4 sage/modules/free_module.py
a
|
b
|
|
1569 | 1569 | [ 0 -1] |
1570 | 1570 | """ |
1571 | 1571 | K = self.base_ring()._magma_init_() |
1572 | | if self._inner_product_matrix: |
| 1572 | if not self._inner_product_is_dot_product(): |
1573 | 1573 | s = "RSpace(%s, %s, %s)"%(K, self.__rank, |
1574 | | self._inner_product_matrix._magma_init_()) |
| 1574 | self.inner_product_matrix()._magma_init_()) |
1575 | 1575 | else: |
1576 | 1576 | s = "RSpace(%s, %s)"%(K, self.__rank) |
1577 | 1577 | |