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.

Author shazow
Recipients georg.brandl, shazow
Date 2008-12-26.21:06:40
SpamBayes Score 0.01975396
Marked as misclassified No
Message-id <1230325603.01.0.864584000034.issue4752@psf.upfronthosting.co.za>
In-reply-to
Content
In the SocketServer.UDPServer Example, the second last line:

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

Should be:

    server = SocketServer.UDPServer((HOST, PORT), MyUDPHandler)
History
Date User Action Args
2008-12-26 21:06:43shazowsetrecipients: + shazow, georg.brandl
2008-12-26 21:06:43shazowsetmessageid: <1230325603.01.0.864584000034.issue4752@psf.upfronthosting.co.za>
2008-12-26 21:06:41shazowlinkissue4752 messages
2008-12-26 21:06:41shazowcreate