Home | History | Annotate | Download | only in multiprocessing

Lines Matching full:socket

2 # Module to allow connection and socket objects to be transferred
40 import socket
178 # Register `socket.socket` with `ForkingPickler`
182 s = socket.fromfd(fd, family, type_, proto)
183 if s.__class__ is not socket.socket:
184 s = socket.socket(_sock=s)
197 ForkingPickler.register(socket.socket, reduce_socket)