#181: iterator passthrough did not compile
()
| 265 | |
| 266 | |
| 267 | def test_iterator_passthrough(): |
| 268 | """#181: iterator passthrough did not compile""" |
| 269 | values = [3, 5, 7, 9, 11, 13, 15] |
| 270 | assert list(m.iterator_passthrough(iter(values))) == values |
| 271 | |
| 272 | |
| 273 | def test_iterator_rvp(): |