| 894 | |
| 895 | # Inside an exception-silencing "with" block |
| 896 | class Context: |
| 897 | def __enter__(self): |
| 898 | return self |
| 899 | def __exit__ (self, exc_type, exc_value, exc_tb): |
| 900 | return True |
| 901 | obj = MyObj() |
| 902 | wr = weakref.ref(obj) |
| 903 | with Context(): |
no outgoing calls
searching dependent graphs…