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 lukknapen
Recipients helduel, lukknapen
Date 2009-03-06.00:01:45
SpamBayes Score 9.839919e-06
Marked as misclassified No
Message-id <1236297711.22.0.770537651003.issue5421@psf.upfronthosting.co.za>
In-reply-to
Content
File $python/lib/python3.0/logging/handlers.py
Line 782 : a bytes object is required instead of a string.
As a consequence, encoding shall be specified : but which one ?

Is : 
   self.socket.sendto(msg, self.address)
Should look like :
   self.socket.sendto(bytes(msg,'ascii'), self.address)
History
Date User Action Args
2009-03-06 00:01:51lukknapensetrecipients: + lukknapen, helduel
2009-03-06 00:01:51lukknapensetmessageid: <1236297711.22.0.770537651003.issue5421@psf.upfronthosting.co.za>
2009-03-06 00:01:49lukknapenlinkissue5421 messages
2009-03-06 00:01:48lukknapencreate