HomeSort by relevance Sort by last modified time
    Searched refs:SocketIO (Results 1 - 3 of 3) sorted by null

  /external/python/cpython2/Lib/idlelib/
rpc.py 8 | SocketServer.BaseRequestHandler | | SocketIO |
23 RPCHandler inherits the mix-in class SocketIO, which provides these methods.
124 class SocketIO(object):
202 msg = "*** Internal Error: rpc.py:SocketIO.localcall()\n\n"\
476 #----------------- end class SocketIO --------------------
492 class RPCHandler(SocketServer.BaseRequestHandler, SocketIO):
499 SocketIO.__init__(self, sock)
509 class RPCClient(SocketIO):
526 SocketIO.__init__(self, working_sock)
  /external/python/cpython3/Lib/idlelib/
rpc.py 8 | socketserver.BaseRequestHandler | | SocketIO |
23 RPCHandler inherits the mix-in class SocketIO, which provides these methods.
129 class SocketIO(object):
211 msg = "*** Internal Error: rpc.py:SocketIO.localcall()\n\n"\
488 #----------------- end class SocketIO --------------------
507 class RPCHandler(socketserver.BaseRequestHandler, SocketIO):
514 SocketIO.__init__(self, sock)
525 class RPCClient(SocketIO):
542 SocketIO.__init__(self, working_sock)
  /external/python/cpython3/Lib/
socket.py 240 raw = SocketIO(self, rawmode)
546 class SocketIO(io.RawIOBase):
615 """True if the SocketIO is open for reading.
622 """True if the SocketIO is open for writing.
629 """True if the SocketIO is open for seeking.
653 """Close the SocketIO object. This doesn't close the underlying

Completed in 243 milliseconds