| 771 | |
| 772 | def test_enter_context(self): |
| 773 | class TestCM(object): |
| 774 | def __enter__(self): |
| 775 | result.append(1) |
| 776 | def __exit__(self, *exc_details): |
| 777 | result.append(3) |
| 778 | |
| 779 | result = [] |
| 780 | cm = TestCM() |
no outgoing calls
searching dependent graphs…