summaryrefslogtreecommitdiff
path: root/extmod/asyncio/stream.py
diff options
context:
space:
mode:
Diffstat (limited to 'extmod/asyncio/stream.py')
-rw-r--r--extmod/asyncio/stream.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/extmod/asyncio/stream.py b/extmod/asyncio/stream.py
index bcc2a13a8..cb0a804b5 100644
--- a/extmod/asyncio/stream.py
+++ b/extmod/asyncio/stream.py
@@ -13,12 +13,6 @@ class Stream:
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