This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: ValueError in 21.17.4.2. SocketServer.UDPServer Example
Type: Stage:
Components: Documentation Versions: Python 2.7, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: ericpope, georg.brandl
Priority: normal Keywords:

Created on 2009-08-17 16:48 by ericpope, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg91666 - (view) Author: Eric Pope (ericpope) Date: 2009-08-17 16:48
In the client side example under
21.17.4.2. SocketServer.UDPServer Example:
at: 
http://docs.python.org/dev/library/socketserver.html

<<<<raises ValueError:
HOST, PORT = "localhost"
>>>>should have been:
HOST, PORT = "localhost", 9999
msg91929 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-08-24 17:22
Thanks, fixed in r74547.
History
Date User Action Args
2022-04-11 14:56:52adminsetgithub: 50967
2009-08-24 17:22:11georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg91929
2009-08-17 16:48:23ericpopecreate