Remove unnecessary fileno method from FileObjectWrapper

This commit is contained in:
Ammar Askar 2017-07-16 01:03:47 -07:00
parent d8226d266f
commit c87d7bc6f3
No known key found for this signature in database
GPG Key ID: 5466BE9666B54DED
1 changed files with 0 additions and 3 deletions

View File

@ -70,9 +70,6 @@ class EncryptedFileObjectWrapper(object):
def read(self, length):
return self.decryptor.update(self.actual_file_object.read(length))
def fileno(self):
return self.actual_file_object.fileno()
class EncryptedSocketWrapper(object):
def __init__(self, socket, encryptor, decryptor):