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

Commit

Permalink
fix for py3
Browse files Browse the repository at this point in the history
  • Loading branch information
fchapoton committed Mar 5, 2019
1 parent 3e33bcb commit c93a30a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/modules/free_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -7606,15 +7606,15 @@ def __iter__(self):
sage: R = IntegerModRing(6)
sage: M = R**4
sage: U = M.span([M((1,1,0,2))])
sage: for u in U: print u
sage: for u in U: print(u)
(0, 0, 0, 0)
(1, 1, 0, 2)
(2, 2, 0, 4)
(3, 3, 0, 0)
(4, 4, 0, 2)
(5, 5, 0, 4)
sage: U = M.span([M((2,2,0,4))])
sage: for u in U: print u
sage: for u in U: print(u)
(0, 0, 0, 0)
(2, 2, 0, 4)
(4, 4, 0, 2)
Expand Down

0 comments on commit c93a30a

Please sign in to comment.