(self)
| 68 | self.rows[y % self.height][x % self.width] = state |
| 69 | |
| 70 | def __str__(self): |
| 71 | output = "" |
| 72 | for row in self.rows: |
| 73 | for cell in row: |
| 74 | output += cell |
| 75 | output += "\n" |
| 76 | return output |
| 77 | |
| 78 | |
| 79 | print("Example 3") |
nothing calls this directly
no outgoing calls
no test coverage detected