Open GoogleCodeExporter opened 8 years ago
digging down... within processsing.reduction.py contains:
try:
fromfd = socket.fromfd
except AttributeError:
def fromfd(fd, family, type, proto=0):
s = socket._socket.socket()
_processing.changeFd(s, fd, family, type, proto)
return s
within multiprocesssing.reduction.py there is
def fromfd(fd, family, type_, proto=0):
s = socket.fromfd(fd, family, type_, proto)
if s.__class__ is not socket.socket:
s = socket.socket(_sock=s)
return s
and changeFd is no longer a method of multiprocessing :(
Harald
Original comment by haraldar...@gmail.com
on 28 Apr 2009 at 11:44
Original issue reported on code.google.com by
haraldar...@gmail.com
on 28 Apr 2009 at 11:39