diff options
| author | Mark Dickinson <dickinsm@gmail.com> | 2009-12-24 16:09:31 (GMT) |
|---|---|---|
| committer | Mark Dickinson <dickinsm@gmail.com> | 2009-12-24 16:09:31 (GMT) |
| commit | 995d6a31e941a63d7bf9538f275d605a85734f98 (patch) | |
| tree | a5cd89b5bcf316dec84d6414b3bf8a2666af1e13 /Lib/imaplib.py | |
| parent | 7b3cfa42d257a77ff4e7a94430f64c67f0462a3f (diff) | |
| download | cpython-995d6a31e941a63d7bf9538f275d605a85734f98.zip cpython-995d6a31e941a63d7bf9538f275d605a85734f98.tar.gz cpython-995d6a31e941a63d7bf9538f275d605a85734f98.tar.bz2 | |
Merged revisions 77041 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r77041 | mark.dickinson | 2009-12-24 16:06:58 +0000 (Thu, 24 Dec 2009) | 1 line
Issue #7568: typo in docstring. Thanks Mike Putnam.
........
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 5a45845..0ea307b 100644 --- a/Lib/imaplib.py +++ b/Lib/imaplib.py @@ -726,7 +726,7 @@ class IMAP4: def thread(self, threading_algorithm, charset, *search_criteria): """IMAPrev1 extension THREAD command. - (type, [data]) = <instance>.thread(threading_alogrithm, charset, search_criteria, ...) + (type, [data]) = <instance>.thread(threading_algorithm, charset, search_criteria, ...) """ name = 'THREAD' typ, dat = self._simple_command(name, threading_algorithm, charset, *search_criteria) |
