(self, x, y)
| 43 | ) |
| 44 | |
| 45 | def cellvalue(self, x, y): |
| 46 | cell = self.getcell(x, y) |
| 47 | if hasattr(cell, 'recalc'): |
| 48 | return cell.recalc(self.ns) |
| 49 | else: |
| 50 | return cell |
| 51 | |
| 52 | def multicellvalue(self, x1, y1, x2, y2): |
| 53 | if x1 > x2: |
no test coverage detected