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: Error in SocketServer UDP documentation
Type: Stage:
Components: Documentation Versions: Python 3.0, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: georg.brandl, shazow
Priority: normal Keywords:

Created on 2008-12-26 21:06 by shazow, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg78305 - (view) Author: Andrey Petrov (shazow) Date: 2008-12-26 21:06
In the SocketServer.UDPServer Example, the second last line:

    server = SocketServer.UDPServer((HOST, PORT), BaseUDPRequestHandler)

Should be:

    server = SocketServer.UDPServer((HOST, PORT), MyUDPHandler)
msg78371 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-12-27 17:42
Thanks, fixed in r67952.
History
Date User Action Args
2022-04-11 14:56:43adminsetgithub: 49002
2008-12-27 17:42:50georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg78371
2008-12-26 21:06:42shazowcreate