__del__(self) |
Called when the instance is about to be destroyed. [extrait de __del__.__doc__] |
__enter__(self) |
|
__exit__(self, *args) |
|
__getstate__(self) |
|
__repr__(self) |
Wrap __repr__() to reveal the real class name and socket [extrait de __repr__.__doc__] |
accept(self) |
accept() -> (socket object, address info) [extrait de accept.__doc__] |
bind(self, object) |
bind(address) [extrait de bind.__doc__] |
close(self) |
|
connect(self, object) |
connect(address) [extrait de connect.__doc__] |
connect_ex(self, object) |
connect_ex(address) -> errno [extrait de connect_ex.__doc__] |
detach(self) |
detach() -> file descriptor [extrait de detach.__doc__] |
dup(self) |
dup() -> socket object [extrait de dup.__doc__] |
fileno(self) |
fileno() -> integer [extrait de fileno.__doc__] |
get_inheritable(self) |
Get the inheritable flag of the socket [extrait de get_inheritable.__doc__] |
getblocking(self) |
getblocking() [extrait de getblocking.__doc__] |
getpeername(self) |
getpeername() -> address info [extrait de getpeername.__doc__] |
getsockname(self) |
getsockname() -> address info [extrait de getsockname.__doc__] |
getsockopt |
getsockopt(level, option[, buffersize]) -> value [extrait de getsockopt.__doc__] |
gettimeout(self) |
gettimeout() -> timeout [extrait de gettimeout.__doc__] |
ioctl |
ioctl(cmd, option) -> long [extrait de ioctl.__doc__] |
listen |
listen([backlog]) [extrait de listen.__doc__] |
makefile(self, mode='r', buffering=None, *, encoding=None, errors=None, newline=None) |
makefile(...) -> an I/O stream connected to the socket [extrait de makefile.__doc__] |
recv |
recv(buffersize[, flags]) -> data [extrait de recv.__doc__] |
recv_into |
recv_into(buffer, [nbytes[, flags]]) -> nbytes_read [extrait de recv_into.__doc__] |
recvfrom |
recvfrom(buffersize[, flags]) -> (data, address info) [extrait de recvfrom.__doc__] |
recvfrom_into |
recvfrom_into(buffer[, nbytes[, flags]]) -> (nbytes, address info) [extrait de recvfrom_into.__doc__] |
send |
send(data[, flags]) -> count [extrait de send.__doc__] |
sendall |
sendall(data[, flags]) [extrait de sendall.__doc__] |
sendfile(self, file, offset=0, count=None) |
sendfile(file[, offset[, count]]) -> sent [extrait de sendfile.__doc__] |
sendto |
sendto(data[, flags], address) -> count [extrait de sendto.__doc__] |
set_inheritable(self, inheritable) |
Set the inheritable flag of the socket [extrait de set_inheritable.__doc__] |
setblocking(self, object) |
setblocking(flag) [extrait de setblocking.__doc__] |
setsockopt |
setsockopt(level, option, value: int) [extrait de setsockopt.__doc__] |
settimeout(self, object) |
settimeout(timeout) [extrait de settimeout.__doc__] |
share |
share(process_id) -> bytes [extrait de share.__doc__] |
shutdown(self, object) |
shutdown(flag) [extrait de shutdown.__doc__] |
Améliorations / Corrections
Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.
Emplacement :
Description des améliorations :