()
| 4196 | |
| 4197 | |
| 4198 | def test_this_magic_2(): |
| 4199 | tab = T( |
| 4200 | """ |
| 4201 | | a | b | c | d |
| 4202 | 1 | 1 | 2 | 3 | 4 |
| 4203 | """ |
| 4204 | ) |
| 4205 | |
| 4206 | with pytest.raises(KeyError): |
| 4207 | tab.select(pw.this.without(pw.this.a).a) |
| 4208 | |
| 4209 | |
| 4210 | def test_this_magic_3(): |