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: Typos in Lib/email/generator.py and Lib/email/architecture.rst
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.3, Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ezio.melotti Nosy List: docs@python, ezio.melotti, r.david.murray, vajrasky
Priority: normal Keywords:

Created on 2013-07-21 02:57 by vajrasky, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (4)
msg193425 - (view) Author: Vajrasky Kok (vajrasky) * Date: 2013-07-21 02:57
[sky@localhost cpython]$ grep -n boudary Lib/email/generator.py 
352:    #   _make_boudary = Generator._make_boundary
[sky@localhost cpython]$ grep -n fuzy Lib/email/architecture.rst 
27:This division is intentionally a bit fuzy; the API described by this documentation

In addition to that, I found inconsistency in plural form of tuple.

[sky@localhost cpython]$ grep -n "\-tuple" Lib/email/utils.py 
79:    """The inverse of parseaddr(), this takes a 2-tuple of the form
285:    params is a sequence of 2-tuples containing (param name, string value).
291:    # 3-tuple of the continuation number, the string value, and a flag

But I think this issue is very very trivial and we can ignore it.
msg193426 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2013-07-21 04:09
The tuple pluralization looks correct to me.
msg193427 - (view) Author: Vajrasky Kok (vajrasky) * Date: 2013-07-21 07:32
Sorry, my bad. The tuple pluralization is correct. I read it wrongly.
msg194807 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2013-08-10 15:49
Fixed in 168f6ac90abf (3.3) and 40ef5ce25d08 (default).
Thanks for the report!
History
Date User Action Args
2022-04-11 14:57:48adminsetgithub: 62716
2013-08-10 15:49:25ezio.melottisetstatus: open -> closed

type: enhancement
assignee: docs@python -> ezio.melotti
versions: + Python 3.3
nosy: + ezio.melotti

messages: + msg194807
resolution: fixed
stage: resolved
2013-07-21 07:32:05vajraskysetmessages: + msg193427
2013-07-21 04:09:50r.david.murraysetmessages: + msg193426
2013-07-21 02:57:33vajraskycreate