[issue19620] tokenize documentation contains typos (argment instead of argument)

2014-01-26 Thread Christopher Welborn
Changes by Christopher Welborn : -- nosy: -cjwelborn ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue19620] tokenize documentation contains typos (argment instead of argument)

2014-01-26 Thread Christopher Welborn
Christopher Welborn added the comment: I should've made the patch, sorry about that. I got really busy and by the time I came back it had been fixed already. (fast turnaround :) I'm just glad it got fixed. I'm removing myself from the nosy-list. -- _

[issue19620] tokenize documentation contains typos (argment instead of argument)

2013-11-24 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the report! -- assignee: docs@python -> ezio.melotti nosy: +ezio.melotti resolution: -> fixed stage: -> committed/rejected status: open -> closed type: -> enhancement ___ Python tracker

[issue19620] tokenize documentation contains typos (argment instead of argument)

2013-11-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9b170d74a0a2 by Ezio Melotti in branch '2.7': #19620: Fix typo in docstring (noticed by Christopher Welborn). http://hg.python.org/cpython/rev/9b170d74a0a2 New changeset 3f99564b712e by Ezio Melotti in branch '3.3': #19620: Fix typo in docstring (no

[issue19620] tokenize documentation contains typos (argment instead of argument)

2013-11-22 Thread Éric Araujo
Éric Araujo added the comment: Thanks for catching this, would you like to make a patch? http://docs.python.org/devguide gives help to do that. -- nosy: +eric.araujo ___ Python tracker _

[issue19620] tokenize documentation contains typos (argment instead of argument)

2013-11-15 Thread Christopher Welborn
Christopher Welborn added the comment: Oops, forgot to mention the documentation I am speaking of is the actual doc strings. The actual test is to run: import tokenize help(tokenize) or just: `python -c "import tokenize;help(tokenize)" | grep "argment"` -- ___

[issue19620] tokenize documentation contains typos (argment instead of argument)

2013-11-15 Thread Christopher Welborn
New submission from Christopher Welborn: Documentation for tokenize contains typos, functions detect_encoding() and tokenize() at least. The lines are: The tokenize() generator requires one argment, readline,... It requires one argment, readline, ...where argment is supposed to be 'argument'