From: Antoine Pitrou Date: Wed, 10 Nov 2010 00:18:40 +0000 (+0000) Subject: Forward port r86386 after it fixed the 3.1 buildbot issues X-Git-Tag: v3.2a4~33 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dac47914d75ac3127911d972b8bfc14bb49e66fe;p=thirdparty%2FPython%2Fcpython.git Forward port r86386 after it fixed the 3.1 buildbot issues --- diff --git a/Lib/imaplib.py b/Lib/imaplib.py index e020747e6ce0..94f4e8fdf5de 100644 --- a/Lib/imaplib.py +++ b/Lib/imaplib.py @@ -818,7 +818,7 @@ class IMAP4: def _check_bye(self): bye = self.untagged_responses.get('BYE') if bye: - raise self.abort(bye[-1]) + raise self.abort(bye[-1].decode('ascii', 'replace')) def _command(self, name, *args): @@ -899,14 +899,17 @@ class IMAP4: def _command_complete(self, name, tag): - self._check_bye() + # BYE is expected after LOGOUT + if name != 'LOGOUT': + self._check_bye() try: typ, data = self._get_tagged_response(tag) except self.abort as val: raise self.abort('command: %s => %s' % (name, val)) except self.error as val: raise self.error('command: %s => %s' % (name, val)) - self._check_bye() + if name != 'LOGOUT': + self._check_bye() if typ == 'BAD': raise self.error('%s command error: %s %s' % (name, typ, data)) return typ, data