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

Commit 7c12326

Browse files
author
Frédéric Chapoton
committed
python 3 print for matrices, detail
1 parent fd35ef0 commit 7c12326

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/sage/matrix/matrix_modn_dense_template.pxi

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ We test corner cases for multiplication::
5050
sage: m11 = matrix(GF(3),1,1,[1])
5151
sage: good = [ (v0,m00), (v0,m01), (v1,m10), (v1,m11), (m00,v0), (m10,v0), (m01,v1), (m11,v1), (m00,m00), (m01,m10), (m10,m01), (m11,m11) ]
5252
sage: for v, m in good:
53-
....: print('{} x {} = {}'.format(v, m, v * m)
53+
....: print('{} x {} = {}'.format(v, m, v * m))
5454
() x [] = ()
5555
() x [] = (0)
5656
(1) x [] = ()

0 commit comments

Comments
 (0)