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.

Author py.user
Recipients BreamoreBoy, christian.heimes, py.user, rhettinger
Date 2013-12-30.18:52:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1388429542.65.0.437232632537.issue18310@psf.upfronthosting.co.za>
In-reply-to
Content
for example
http://docs.python.org/3/library/itertools.html#itertools.permutations

has same description and it's a keyword

compare
"itertools.tee(iterable, n=2)"
"itertools.permutations(iterable, r=None)"


>>> itertools.permutations('abc')
<itertools.permutations object at 0x7ff563b17230>
>>> itertools.permutations('abc', r=2)
<itertools.permutations object at 0x7ff563b17290>
>>> 
>>> 
>>> itertools.tee('abc')
(<itertools._tee object at 0x7ff563a995f0>, <itertools._tee object at 0x7ff563a99638>)
>>> itertools.tee('abc', n=2)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: tee() takes no keyword arguments
>>>
History
Date User Action Args
2013-12-30 18:52:22py.usersetrecipients: + py.user, rhettinger, christian.heimes, BreamoreBoy
2013-12-30 18:52:22py.usersetmessageid: <1388429542.65.0.437232632537.issue18310@psf.upfronthosting.co.za>
2013-12-30 18:52:22py.userlinkissue18310 messages
2013-12-30 18:52:22py.usercreate