| 2429 | |
| 2430 | def test_descriptor_raises_AttributeError(self): |
| 2431 | class descriptor(object): |
| 2432 | def __get__(*_): |
| 2433 | raise AttributeError("I'm pretending not to exist") |
| 2434 | desc = descriptor() |
| 2435 | class Thing(object): |
| 2436 | x = desc |
no outgoing calls