diff --git a/asyncio/stream.py b/asyncio/stream.py index 44a8cc5..50cc8de 100644 --- a/asyncio/stream.py +++ b/asyncio/stream.py @@ -36,12 +36,6 @@ def get_extra_info(self, v): return self.e[v] - async def __aenter__(self): - return self - - async def __aexit__(self, exc_type, exc, tb): - await self.close() - def close(self): pass