(self)
| 154 | p = poly.Polynomial([1, 2, 3, 0], symbol='z') |
| 155 | |
| 156 | def test_copy(self): |
| 157 | other = self.p.copy() |
| 158 | assert_equal(other.symbol, 'z') |
| 159 | |
| 160 | def test_trim(self): |
| 161 | other = self.p.trim() |
nothing calls this directly
no test coverage detected