[issue1194378] sendmsg() and recvmsg() for C socket module

2009-07-26 Thread Ezio Melotti
Ezio Melotti added the comment: Closing this as duplicate of #6560. -- nosy: +ezio.melotti resolution: -> duplicate stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker ___

[issue1194378] sendmsg() and recvmsg() for C socket module

2009-05-06 Thread Guillaume Desmottes
Changes by Guillaume Desmottes : -- nosy: +gdesmott ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue1194378] sendmsg() and recvmsg() for C socket module

2009-02-06 Thread Forest Wilkinson
Changes by Forest Wilkinson : -- nosy: +forest ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue1194378] sendmsg() and recvmsg() for C socket module

2008-12-27 Thread Antoine Pitrou
Antoine Pitrou added the comment: The patch doesn't apply cleanly to the current trunk (which is understandable, given the patch is from 2005). Also, some tests would be welcome as Thomas said. And bonus points for documentation :) -- nosy: +pitrou stage: -> needs patch type: -> featu

[issue1194378] sendmsg() and recvmsg() for C socket module

2008-12-27 Thread David M. Beazley
David M. Beazley added the comment: Just a followup comment to note that adding support for sendmsg()/recvmsg() is what you need to do "file descriptor passing" between processes on Unix---another technique for writing network servers. ___ Python tracker <

[issue1194378] sendmsg() and recvmsg() for C socket module

2008-12-24 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' : -- nosy: +giampaolo.rodola ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue1194378] sendmsg() and recvmsg() for C socket module

2008-12-24 Thread David M. Beazley
David M. Beazley added the comment: Bump. This functionality seems to be needed if anyone is going to be messing around with advanced features of IPv6. As it stands, the socket module in Python 2.6/3.0 is incomplete without this. -- nosy: +beazley _