summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-10-08 19:13:48 (GMT)
committerGuido van Rossum <guido@python.org>1994-10-08 19:13:48 (GMT)
commit00d59746f6d06e3dc7d85ff2ab05e0f3542de816 (patch)
treee1df8b2e09f5dec6c8c6dfc1177735d501ccfa0b
parent37f142d1d1cb7e336fd82303081f2c8bad966819 (diff)
downloadcpython-00d59746f6d06e3dc7d85ff2ab05e0f3542de816.zip
cpython-00d59746f6d06e3dc7d85ff2ab05e0f3542de816.tar.gz
cpython-00d59746f6d06e3dc7d85ff2ab05e0f3542de816.tar.bz2
fix bind arg
-rwxr-xr-xDemo/sockets/broadcast.py2
-rwxr-xr-xDemo/sockets/mcast.py2
-rwxr-xr-xDemo/sockets/radio.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/Demo/sockets/broadcast.py b/Demo/sockets/broadcast.py
index e7e6b9b..4b30143 100755
--- a/Demo/sockets/broadcast.py
+++ b/Demo/sockets/broadcast.py
@@ -7,7 +7,7 @@ from socket import *
from SOCKET import *
s = socket(AF_INET, SOCK_DGRAM)
-s.bind('', 0)
+s.bind(('', 0))
s.setsockopt(SOL_SOCKET, SO_BROADCAST, 1)
while 1:
diff --git a/Demo/sockets/mcast.py b/Demo/sockets/mcast.py
index 4011383..8c6298e 100755
--- a/Demo/sockets/mcast.py
+++ b/Demo/sockets/mcast.py
@@ -73,7 +73,7 @@ def openmcastsock(group, port):
s.setsockopt(SOL_SOCKET, SO_REUSEPORT, 1)
#
# Bind it to the port
- s.bind('', port)
+ s.bind(('', port))
#
# Look up multicast group address in name server
# (doesn't hurt if it is already in ddd.ddd.ddd.ddd format)
diff --git a/Demo/sockets/radio.py b/Demo/sockets/radio.py
index 5905ff2..6131d40 100755
--- a/Demo/sockets/radio.py
+++ b/Demo/sockets/radio.py
@@ -6,7 +6,7 @@ import sys
from socket import *
s = socket(AF_INET, SOCK_DGRAM)
-s.bind('', MYPORT)
+s.bind(('', MYPORT))
while 1:
data, wherefrom = s.recvfrom(1500, 0)