python / cpython

The Python programming language
https://www.python.org
Other
63.38k stars 30.35k forks source link

Spelling error in imaplib module docs #51817

Closed f97205f9-9f0d-4661-8168-387966a7fc4e closed 14 years ago

f97205f9-9f0d-4661-8168-387966a7fc4e commented 14 years ago
BPO 7568
Nosy @mdickinson

Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

Show more details

GitHub fields: ```python assignee = None closed_at = created_at = labels = ['library'] title = 'Spelling error in imaplib module docs' updated_at = user = 'https://bugs.python.org/mikeputnam' ``` bugs.python.org fields: ```python activity = actor = 'mark.dickinson' assignee = 'none' closed = True closed_date = closer = 'mark.dickinson' components = ['Library (Lib)'] creation = creator = 'mikeputnam' dependencies = [] files = [] hgrepos = [] issue_num = 7568 keywords = [] message_count = 2.0 messages = ['96839', '96863'] nosy_count = 2.0 nosy_names = ['mark.dickinson', 'mikeputnam'] pr_nums = [] priority = 'normal' resolution = 'fixed' stage = None status = 'closed' superseder = None type = None url = 'https://bugs.python.org/issue7568' versions = ['Python 2.6', 'Python 3.1', 'Python 2.7', 'Python 3.2'] ```

f97205f9-9f0d-4661-8168-387966a7fc4e commented 14 years ago

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"

mdickinson commented 14 years ago

Thanks for the report! Fixed in revisions r77041 through r77044.