| 91 | # this doesn't happen with subclasses |
| 92 | if realresult is object: |
| 93 | class usub(str): |
| 94 | def __repr__(self): |
| 95 | return 'usub(%r)' % str.__repr__(self) |
| 96 | object = usub(object) |
| 97 | method = getattr(object, methodname) |
| 98 | realresult = method(*args) |
no outgoing calls
searching dependent graphs…