Commit 05245f74 authored by Georg Brandl's avatar Georg Brandl

#5146: handle UID THREAD command correctly.

parent 87a1564f
...@@ -765,7 +765,7 @@ class IMAP4: ...@@ -765,7 +765,7 @@ class IMAP4:
', '.join(Commands[command]))) ', '.join(Commands[command])))
name = 'UID' name = 'UID'
typ, dat = self._simple_command(name, command, *args) typ, dat = self._simple_command(name, command, *args)
if command in ('SEARCH', 'SORT'): if command in ('SEARCH', 'SORT', 'THREAD'):
name = command name = command
else: else:
name = 'FETCH' name = 'FETCH'
......
...@@ -15,6 +15,8 @@ Core and Builtins ...@@ -15,6 +15,8 @@ Core and Builtins
Library Library
------- -------
- Issue #5146: Handle UID THREAD command correctly in imaplib.
- Issue #5147: Fix the header generated for cookie files written by - Issue #5147: Fix the header generated for cookie files written by
http.cookiejar.MozillaCookieJar. http.cookiejar.MozillaCookieJar.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment