[issue18285] In itertools.product() add argument repeat to the docstring

2013-06-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1fad7a709aae by Andrew Kuchling in branch '3.3': Close #18285: add 'repeat' parameter to docstring for product http://hg.python.org/cpython/rev/1fad7a709aae -- nosy: +python-dev resolution: -> fixed stage: -> committed/rejected status: ope

[issue18285] In itertools.product() add argument repeat to the docstring

2013-06-22 Thread py.user
Changes by py.user : -- type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue18285] In itertools.product() add argument repeat to the docstring

2013-06-22 Thread py.user
New submission from py.user: >>> import itertools >>> print(itertools.product.__doc__) product(*iterables) --> product object Cartesian product of input iterables. Equivalent to nested for-loops. ... -- assignee: docs@python components: Documentation messages: 191658 nosy: docs@python,

[issue18285] In itertools.product() add argument repeat to the docstring

2013-06-22 Thread py.user
Changes by py.user : -- keywords: +patch Added file: http://bugs.python.org/file30669/issue18285.diff ___ Python tracker ___ ___ Pytho