New submission from Serhiy Storchaka:

Docstrings of some itertools functions look outdated.

1. The docstring of groupby() contains the signature "groupby(iterable[, 
keyfunc])". But groupby() supports keyword arguments, the name of the second 
parameter is "key", and its default value is None.

2. accumulate() accepts None as the second argument.

3. The equivalent code of count() has the first parameter "firstval" instead of 
"start". It uses the "while 1" loop instead of more idiomatic in Python 3 
"while True".

4. The term "sequence" is used in the docstring of starmap(), while actually an 
iterable is accepted. Compare with the docstring of map(). See also issue31082.

----------
assignee: docs@python
components: Documentation
keywords: easy
messages: 299975
nosy: docs@python, rhettinger, serhiy.storchaka
priority: normal
severity: normal
status: open
title: Update docstrings of itertools function
type: enhancement
versions: Python 3.6, Python 3.7

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue31153>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to