| 5007 | # issue 4230 |
| 5008 | |
| 5009 | class Descriptor(object): |
| 5010 | counter = 0 |
| 5011 | def __get__(self, obj, objtype=None): |
| 5012 | def getter(name): |
| 5013 | self.counter += 1 |
| 5014 | raise AttributeError(name) |
| 5015 | return getter |
| 5016 | |
| 5017 | descr = Descriptor() |
| 5018 | class A(object): |
no outgoing calls
searching dependent graphs…