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: trivial typo in itertools documentation
Type: Stage:
Components: Documentation Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: donlorenzo, georg.brandl, rhettinger
Priority: normal Keywords: patch

Created on 2009-03-08 16:57 by donlorenzo, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
itertools.patch donlorenzo, 2009-03-10 11:51 patches the typo
Messages (5)
msg83314 - (view) Author: Lorenz Quack (donlorenzo) * Date: 2009-03-08 16:57
In the docs:
"http://docs.python.org/library/itertools.html#module-itertools"
In the table: "Iterators terminating on the shortest input sequence:"
In row: "imap()" and "starmap()"
In the column: "Results"

It says "fun()" instead of "func()"
msg83371 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2009-03-09 11:33
r70261
msg83425 - (view) Author: Lorenz Quack (donlorenzo) * Date: 2009-03-10 11:43
Thanks for fixing.
But I'm afraid you missed the second typo in this Bug.
It's the same thing one line beneath the one you fixed.

next time I'll attach a patch. I promise.
msg83426 - (view) Author: Lorenz Quack (donlorenzo) * Date: 2009-03-10 11:51
FWIW here is the patch.
It is against r70267 of the trunk
msg85513 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-04-05 15:11
Has been fixed in trunk for some time.
History
Date User Action Args
2022-04-11 14:56:46adminsetgithub: 49693
2009-04-05 15:11:20georg.brandlsetstatus: open -> closed

messages: + msg85513
2009-03-10 11:51:04donlorenzosetfiles: + itertools.patch

messages: + msg83426
keywords: + patch
2009-03-10 11:43:34donlorenzosetstatus: closed -> open

messages: + msg83425
2009-03-09 11:33:18rhettingersetstatus: open -> closed

nosy: + rhettinger
messages: + msg83371

resolution: fixed
2009-03-08 16:57:48donlorenzocreate