def recvfrom_into(self, buffer, nbytes=None, flags=0):
     self._checkClosed()
     if self._sslobj:
         raise ValueError("recvfrom_into not allowed on instances of %s" %
                          self.__class__)
     else:
         return socket.recvfrom_into(self, buffer, nbytes, flags)
Example #2
0
 def recvfrom_into(self, buffer, nbytes=None, flags=0):
     self._checkClosed()
     if self._sslobj:
         raise ValueError("recvfrom_into not allowed on instances of %s" %
                          self.__class__)
     else:
         return socket.recvfrom_into(self, buffer, nbytes, flags)
Example #3
0
 def recvfrom_into(self, *args):
     if self._sslobj:
         raise ValueError("recvfrom_into not allowed on instances of %s" %
                          self.__class__)
     return socket.recvfrom_into(self, *args)
Example #4
0
 def recvfrom_into(self, *args):
     if self._sslobj:
         raise ValueError("recvfrom_into not allowed on instances of %s" %
                          self.__class__)
     else:
         return socket.recvfrom_into(self, *args)