When buffer_writes is enabled, writes won't be passed to the real
socket until flush() is called.
Not multithread safe.
|
|
|
|
|
|
|
|
|
getsockname(self)
Return the socket's own address (socket emulation). |
source code
|
|
|
|
|
recv(self,
bufsize)
Receive data from socket (socket emulation) |
source code
|
|
|
|
|
sendall(self,
data)
Send data to the socket |
source code
|
|
|
setsockopt(self,
level,
optname,
value)
Set the value of the given socket option (socket emulation). |
source code
|
|
|
settimeout(self,
value)
Set a timeout on blocking socket operations (socket emulation). |
source code
|
|
|
shutdown(self,
how)
Shutdown the underlying socket. |
source code
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|