diff options
author | Robert Collins <rbtcollins@hp.com> | 2015-07-30 20:59:02 (GMT) |
---|---|---|
committer | Robert Collins <rbtcollins@hp.com> | 2015-07-30 20:59:02 (GMT) |
commit | 5ccc18f29844b55a43bf8f26dffeb39057477dea (patch) | |
tree | cfecef015dc1e93960ef44e2f3a5861998e6a94b /Lib/imaplib.py | |
parent | 30f1f67248260b10eb16a3e630c6cf5c7e29fad2 (diff) | |
download | cpython-5ccc18f29844b55a43bf8f26dffeb39057477dea.zip cpython-5ccc18f29844b55a43bf8f26dffeb39057477dea.tar.gz cpython-5ccc18f29844b55a43bf8f26dffeb39057477dea.tar.bz2 |
Issue #23779: imaplib raises TypeError if authenticator tries to abort.
Patch from Craig Holmquist.
Diffstat (limited to 'Lib/imaplib.py')
-rw-r--r-- | Lib/imaplib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/imaplib.py b/Lib/imaplib.py index 4d9df55..eb05dcb 100644 --- a/Lib/imaplib.py +++ b/Lib/imaplib.py @@ -1306,7 +1306,7 @@ class _Authenticator: def process(self, data): ret = self.mech(self.decode(data)) if ret is None: - return '*' # Abort conversation + return b'*' # Abort conversation return self.encode(ret) def encode(self, inp): |