Re: UDP and Python2.7 and 2.7 documentation gives error!

2015-07-25 Thread Grant Edwards
On 2015-07-25, =?utf-8?q?St=C3=A9phane?= Wirtel wrote: > the bind function is for the server, not for the client. It's for both. When you're sending, it is used to specify the source port. -- Grant -- https://mail.python.org/mailman/listinfo/python-list

Re: UDP and Python2.7 and 2.7 documentation gives error!

2015-07-25 Thread Laura Creighton
In a message of Sat, 25 Jul 2015 19:43:45 +0200, "Stéphane Wirtel" writes: >the bind function is for the server, not for the client. > >here is an example: https://wiki.python.org/moin/UdpCommunication > >Stephane >On 25 Jul 2015, at 19:10, Nils wrote: > >> UDP and Python2.7 and 2.7 documentation g

Re: UDP and Python2.7 and 2.7 documentation gives error!

2015-07-25 Thread Laura Creighton
In a message of Sat, 25 Jul 2015 19:10:53 +0200, Nils writes: >UDP and Python2.7 and 2.7 documentation gives error! >I am trying to send UDP messages from one PC to another, using P2.7. >BUT I get an error I do not understand, this as I am following the doc's >for Python2.7! Listing of the script w

Re: UDP and Python2.7 and 2.7 documentation gives error!

2015-07-25 Thread Stéphane Wirtel
the bind function is for the server, not for the client. here is an example: https://wiki.python.org/moin/UdpCommunication Stephane On 25 Jul 2015, at 19:10, Nils wrote: UDP and Python2.7 and 2.7 documentation gives error! I am trying to send UDP messages from one PC to another, using P2.7. BU