[issue5171] itertools.product docstring missing 'repeat' argument

2011-01-06 Thread mrjbq7
mrjbq7 added the comment: I noticed a Reddit post[1] today that makes the comment that the docstring should read: product(*iterables[, repeat]) --> product object instead of: product(*iterables) --> product object --- [1] http://www.reddit.com/r/Python/comments/ex68j/omission_

[issue5171] itertools.product docstring missing 'repeat' argument

2009-02-09 Thread Raymond Hettinger
Raymond Hettinger added the comment: Fixed in r69466. Benjamin, do you want to merge it to 2.6, 3.0, and 3.1? -- resolution: -> fixed status: open -> closed ___ Python tracker

[issue5171] itertools.product docstring missing 'repeat' argument

2009-02-08 Thread Raymond Hettinger
Raymond Hettinger added the comment: Thanks, I'll fix this up. -- priority: -> high ___ Python tracker ___ ___ Python-bugs-list maili

[issue5171] itertools.product docstring missing 'repeat' argument

2009-02-06 Thread Mark Dickinson
New submission from Mark Dickinson : The docstring for itertools.product seems to be missing any mention of the repeat keyword argument, in both the trunk and py3k, and the maintenance branches. (The itertools.rst docs are fine, though.) -- assignee: rhettinger components: Library (L