Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
05245f74
Commit
05245f74
authored
Jul 31, 2010
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#5146: handle UID THREAD command correctly.
parent
87a1564f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
Lib/imaplib.py
Lib/imaplib.py
+1
-1
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/imaplib.py
View file @
05245f74
...
...
@@ -765,7 +765,7 @@ class IMAP4:
', '
.
join
(
Commands
[
command
])))
name
=
'UID'
typ
,
dat
=
self
.
_simple_command
(
name
,
command
,
*
args
)
if
command
in
(
'SEARCH'
,
'SORT'
):
if
command
in
(
'SEARCH'
,
'SORT'
,
'THREAD'
):
name
=
command
else
:
name
=
'FETCH'
...
...
Misc/NEWS
View file @
05245f74
...
...
@@ -15,6 +15,8 @@ Core and Builtins
Library
-------
- Issue #5146: Handle UID THREAD command correctly in imaplib.
- Issue #5147: Fix the header generated for cookie files written by
http.cookiejar.MozillaCookieJar.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment