changeset: 93334:54549f9b2ecc parent: 93331:149490bbd260 parent: 93333:f6a906541476 user: Vinay Sajip date: Sat Nov 01 20:00:56 2014 +0000 files: Misc/NEWS description: Closes #22776: Merged fix from 3.4. diff -r 149490bbd260 -r 54549f9b2ecc Lib/logging/handlers.py --- a/Lib/logging/handlers.py Sat Nov 01 07:40:22 2014 -0700 +++ b/Lib/logging/handlers.py Sat Nov 01 20:00:56 2014 +0000 @@ -879,21 +879,21 @@ The record is formatted, and then sent to the syslog server. If exception information is present, it is NOT sent to the server. """ - msg = self.format(record) - if self.ident: - msg = self.ident + msg - if self.append_nul: - msg += '\000' + try: + msg = self.format(record) + if self.ident: + msg = self.ident + msg + if self.append_nul: + msg += '\000' - # We need to convert record level to lowercase, maybe this will - # change in the future. - prio = '<%d>' % self.encodePriority(self.facility, - self.mapPriority(record.levelname)) - prio = prio.encode('utf-8') - # Message is a string. Convert to bytes as required by RFC 5424 - msg = msg.encode('utf-8') - msg = prio + msg - try: + # We need to convert record level to lowercase, maybe this will + # change in the future. + prio = '<%d>' % self.encodePriority(self.facility, + self.mapPriority(record.levelname)) + prio = prio.encode('utf-8') + # Message is a string. Convert to bytes as required by RFC 5424 + msg = msg.encode('utf-8') + msg = prio + msg if self.unixsocket: try: self.socket.send(msg) diff -r 149490bbd260 -r 54549f9b2ecc Misc/NEWS --- a/Misc/NEWS Sat Nov 01 07:40:22 2014 -0700 +++ b/Misc/NEWS Sat Nov 01 20:00:56 2014 +0000 @@ -180,6 +180,9 @@ Library ------- +- Issue #22776: Brought excluded code into the scope of a try block in + SysLogHandler.emit(). + - Issue #22665: Add missing get_terminal_size and SameFileError to shutil.__all__.