From 31b8fb9b486ee6db93bef125da8197fcb1e328d1 Mon Sep 17 00:00:00 2001 From: YuriCat Date: Sat, 26 Feb 2022 03:45:40 +0900 Subject: [PATCH] chore: remove fileno() inferface from PickledConnection --- handyrl/connection.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/handyrl/connection.py b/handyrl/connection.py index 3550f153..8880470b 100755 --- a/handyrl/connection.py +++ b/handyrl/connection.py @@ -29,9 +29,6 @@ def close(self): self.conn.close() self.conn = None - def fileno(self): - return self.conn.fileno() - def _recv(self, size): buf = io.BytesIO() while size > 0: