[issue5379] Multicast example mcast.py is outdated and ugly

2009-05-03 Thread Gregory P. Smith
Gregory P. Smith added the comment: thanks! committed in r72237 & py3k r72238. -- resolution: -> accepted status: open -> closed ___ Python tracker ___

[issue5379] Multicast example mcast.py is outdated and ugly

2009-05-03 Thread Philipp Hagemeister
Changes by Philipp Hagemeister : Removed file: http://bugs.python.org/file13198/mcast-example.diff ___ Python tracker ___ ___ Python-bugs-list

[issue5379] Multicast example mcast.py is outdated and ugly

2009-05-03 Thread Philipp Hagemeister
Philipp Hagemeister added the comment: Updated patch to use the new ipaddr module instead of the platform-specific socket.inet_pton (unavailable on some platforms, including Windows XP) Updated formatting -- Added file: http://bugs.python.org/file13851/mcast-example.diff __

[issue5379] Multicast example mcast.py is outdated and ugly

2009-02-26 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- priority: -> normal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue5379] Multicast example mcast.py is outdated and ugly

2009-02-26 Thread Gregory P. Smith
Gregory P. Smith added the comment: heh yuck that code was ancient. thanks for the update, i'll submit it. -- assignee: -> gregory.p.smith nosy: +gregory.p.smith ___ Python tracker ___

[issue5379] Multicast example mcast.py is outdated and ugly

2009-02-26 Thread Philipp Hagemeister
New submission from Philipp Hagemeister : The multicast example Demo/sockets/mcast.py 1. mentions that multicast is only implemented on SGI (and optional on other systems). That is not the case anymore. 2. Includes completely unrelated code for broadcast transmission. There is already an example