summaryrefslogtreecommitdiffstats
path: root/Doc/library/socketserver.rst
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-02-09 09:54:17 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-02-09 09:54:17 (GMT)
commit6e13f130a9bde00db9fc17934987ed36da251aa7 (patch)
tree2b1be197ce7c94598ad2c9f52286a293b7219bcd /Doc/library/socketserver.rst
parentb2c9e9ad91542e28a77efabe6b16a7021ccc34d3 (diff)
downloadcpython-6e13f130a9bde00db9fc17934987ed36da251aa7.zip
cpython-6e13f130a9bde00db9fc17934987ed36da251aa7.tar.gz
cpython-6e13f130a9bde00db9fc17934987ed36da251aa7.tar.bz2
Fix Issue #6005: Examples in the socket library documentation use sendall,
where relevant, instead send method.
Diffstat (limited to 'Doc/library/socketserver.rst')
-rw-r--r--Doc/library/socketserver.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/library/socketserver.rst b/Doc/library/socketserver.rst
index 34bcce0..5287f17 100644
--- a/Doc/library/socketserver.rst
+++ b/Doc/library/socketserver.rst
@@ -353,7 +353,7 @@ This is the server side::
print("{} wrote:".format(self.client_address[0]))
print(self.data)
# just send back the same data, but upper-cased
- self.request.send(self.data.upper())
+ self.request.sendall(self.data.upper())
if __name__ == "__main__":
HOST, PORT = "localhost", 9999
@@ -383,7 +383,7 @@ objects that simplify communication by providing the standard file interface)::
The difference is that the ``readline()`` call in the second handler will call
``recv()`` multiple times until it encounters a newline character, while the
single ``recv()`` call in the first handler will just return what has been sent
-from the client in one ``send()`` call.
+from the client in one ``sendall()`` call.
This is the client side::
@@ -400,7 +400,7 @@ This is the client side::
try:
# Connect to server and send data
sock.connect((HOST, PORT))
- sock.send(bytes(data + "\n", "utf-8"))
+ sock.sendall(bytes(data + "\n", "utf-8"))
# Receive data from the server and shut down
received = str(sock.recv(1024), "utf-8")
@@ -498,7 +498,7 @@ An example for the :class:`ThreadingMixIn` class::
data = str(self.request.recv(1024), 'ascii')
cur_thread = threading.current_thread()
response = bytes("{}: {}".format(cur_thread.name, data), 'ascii')
- self.request.send(response)
+ self.request.sendall(response)
class ThreadedTCPServer(socketserver.ThreadingMixIn, socketserver.TCPServer):
pass
@@ -507,7 +507,7 @@ An example for the :class:`ThreadingMixIn` class::
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.connect((ip, port))
try:
- sock.send(bytes(message, 'ascii'))
+ sock.sendall(bytes(message, 'ascii'))
response = str(sock.recv(1024), 'ascii')
print("Received: {}".format(response))
finally: