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: In itertools.product() add argument repeat to the docstring
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.3, Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, py.user, python-dev
Priority: normal Keywords: patch

Created on 2013-06-22 18:55 by py.user, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
issue18285.diff py.user, 2013-06-22 18:55 review
Messages (2)
msg191658 - (view) Author: py.user (py.user) * Date: 2013-06-22 18:55
>>> import itertools
>>> print(itertools.product.__doc__)
product(*iterables) --> product object

Cartesian product of input iterables.  Equivalent to nested for-loops.
...
msg191679 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-06-22 23:26
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
History
Date User Action Args
2022-04-11 14:57:47adminsetgithub: 62485
2013-06-22 23:26:09python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg191679

resolution: fixed
stage: resolved
2013-06-22 18:56:47py.usersettype: enhancement
2013-06-22 18:55:45py.usersetfiles: + issue18285.diff
keywords: + patch
2013-06-22 18:55:09py.usercreate