| 8002 | |
| 8003 | def test_async_contextmanager(self): |
| 8004 | class NotACM: |
| 8005 | pass |
| 8006 | self.assertIsInstance(ACM(), typing.AsyncContextManager) |
| 8007 | self.assertNotIsInstance(NotACM(), typing.AsyncContextManager) |
| 8008 | @contextlib.contextmanager |
no outgoing calls
searching dependent graphs…