| 216 | # Trick the "if name == '__dict__':" test of __setattr__() |
| 217 | # to always be true |
| 218 | class NameCompareTrue: |
| 219 | def __eq__(self, other): |
| 220 | return True |
| 221 | |
| 222 | loop = Loop() |
| 223 | with self.assertRaisesRegex(AttributeError, 'Loop.*read-only'): |
no outgoing calls
searching dependent graphs…