This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Spelling error in imaplib module docs
Type: Stage:
Components: Library (Lib) Versions: Python 3.1, Python 3.2, Python 2.7, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: mark.dickinson, mikeputnam
Priority: normal Keywords:

Created on 2009-12-23 15:03 by mikeputnam, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg96839 - (view) Author: Mike Putnam (mikeputnam) Date: 2009-12-23 15:03
The documentation string within the IMAP4.thread function incorrectly
spells the "threading_algorithm" arg as "threading_alogrithm"

Appears to affect imaplib.py ver. 2.55 & 2.58  Could not find other
versions to examine.

Starting in:
/release24-maint/Lib/imaplib.py
__version__ = "2.55"     3 occurences of "threading_alogrithm"

/release25-maint/Lib/imaplib.py
__version__ = "2.58"     1 occurence  of "threading_alogrithm"

/release26-maint/Lib/imaplib.py
__version__ = "2.58"     1 occurence  of "threading_alogrithm"

/release30-maint/Lib/imaplib.py
__version__ = "2.58"     1 occurence  of "threading_alogrithm"

/release31-maint/Lib/imaplib.py
__version__ = "2.58"     1 occurence  of "threading_alogrithm"
msg96863 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2009-12-24 16:19
Thanks for the report!  Fixed in revisions r77041 through r77044.
History
Date User Action Args
2022-04-11 14:56:55adminsetgithub: 51817
2009-12-24 16:19:41mark.dickinsonsetstatus: open -> closed
resolution: fixed
2009-12-24 16:19:32mark.dickinsonsetnosy: + mark.dickinson
messages: + msg96863
2009-12-23 15:43:03loewissetversions: + Python 2.7, Python 3.2
2009-12-23 15:40:21loewissetversions: - Python 3.0
2009-12-23 15:40:11loewissetversions: - Python 2.5, Python 2.4
2009-12-23 15:03:59mikeputnamcreate