diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-12-24 16:15:31 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-12-24 16:15:31 (GMT) |
commit | 39159e143c3e97b864f9af61698cd80b53685c1c (patch) | |
tree | 02bb6fa7f32310f8036903005e4f7d8b5647129b /Lib | |
parent | 8c0678132f7360a36a1a1796cb94f5958fa35071 (diff) | |
download | cpython-39159e143c3e97b864f9af61698cd80b53685c1c.zip cpython-39159e143c3e97b864f9af61698cd80b53685c1c.tar.gz cpython-39159e143c3e97b864f9af61698cd80b53685c1c.tar.bz2 |
Merged revisions 77043 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r77043 | mark.dickinson | 2009-12-24 16:12:49 +0000 (Thu, 24 Dec 2009) | 9 lines
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')
-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 f803a5c..ec47657 100644 --- a/Lib/imaplib.py +++ b/Lib/imaplib.py @@ -740,7 +740,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) |