| 7921 | |
| 7922 | def test_async_contextmanager(self): |
| 7923 | class NotACM: |
| 7924 | pass |
| 7925 | self.assertIsInstance(ACM(), typing.AsyncContextManager) |
| 7926 | self.assertNotIsInstance(NotACM(), typing.AsyncContextManager) |
| 7927 | @contextlib.contextmanager |
no outgoing calls