mirror of https://github.com/python/cpython
Merged revisions 76430 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r76430 | r.david.murray | 2009-11-20 14:29:43 +0100 (Fr, 20 Nov 2009) | 2 lines Issue 7363: fix indentation in socketserver udpserver example. ........
This commit is contained in:
parent
aebafab612
commit
bf737e8014
|
@ -456,9 +456,9 @@ This is the server side::
|
||||||
socket.sendto(data.upper(), self.client_address)
|
socket.sendto(data.upper(), self.client_address)
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
HOST, PORT = "localhost", 9999
|
HOST, PORT = "localhost", 9999
|
||||||
server = SocketServer.UDPServer((HOST, PORT), MyUDPHandler)
|
server = SocketServer.UDPServer((HOST, PORT), MyUDPHandler)
|
||||||
server.serve_forever()
|
server.serve_forever()
|
||||||
|
|
||||||
This is the client side::
|
This is the client side::
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue