Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

library documentation errors #48446

Closed
lambertdw mannequin opened this issue Oct 24, 2008 · 2 comments
Closed

library documentation errors #48446

lambertdw mannequin opened this issue Oct 24, 2008 · 2 comments
Assignees
Labels
docs Documentation in the Doc dir

Comments

@lambertdw
Copy link
Mannequin

lambertdw mannequin commented Oct 24, 2008

BPO 4196
Nosy @birkenfeld, @benjaminp

Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

Show more details

GitHub fields:

assignee = 'https://github.com/birkenfeld'
closed_at = <Date 2008-10-24.22:29:15.805>
created_at = <Date 2008-10-24.18:47:36.159>
labels = ['docs']
title = 'library documentation errors'
updated_at = <Date 2008-10-24.22:29:15.793>
user = 'https://bugs.python.org/LambertDW'

bugs.python.org fields:

activity = <Date 2008-10-24.22:29:15.793>
actor = 'benjamin.peterson'
assignee = 'georg.brandl'
closed = True
closed_date = <Date 2008-10-24.22:29:15.805>
closer = 'benjamin.peterson'
components = ['Documentation']
creation = <Date 2008-10-24.18:47:36.159>
creator = 'LambertDW'
dependencies = []
files = []
hgrepos = []
issue_num = 4196
keywords = []
message_count = 2.0
messages = ['75176', '75192']
nosy_count = 3.0
nosy_names = ['georg.brandl', 'benjamin.peterson', 'LambertDW']
pr_nums = []
priority = 'normal'
resolution = 'fixed'
stage = None
status = 'closed'
superseder = None
type = None
url = 'https://bugs.python.org/issue4196'
versions = ['Python 3.0']

@lambertdw
Copy link
Mannequin Author

lambertdw mannequin commented Oct 24, 2008

4 problems noted here.

Thanks, Dave.

1,2---problems 1 & 2 concern py<3k references:

http://docs.python.org/dev/3.0/library/multiprocessing.html

  1. "apply(func[, args[, kwds]])
    Equivalent of the apply() builtin function. It blocks till the result
    is ready."

Of course there isn't any longer an "apply" builtin.

  1. "imap(func, iterable[, chunksize])
    An equivalent of itertools.imap()."

Likewise, there's no "itertools.imap". Perhaps use
itertools.some_sort_of_truncating_wrapper(itertools.zip_longest(...))?

This brings us to the itertools problem.

3,4---problems 3 & 4 concern "izip" in:

http://docs.python.org/dev/3.0/library/itertools.html

This mentions "izip_longest()", but there isn't an "izip_anything" in
py3k itertools. Searching the page for the string "izip" produces two
separate occurrences. izip_longest -> zip_longest but I don't know
how to fix the other one.

@lambertdw lambertdw mannequin assigned birkenfeld Oct 24, 2008
@lambertdw lambertdw mannequin added the docs Documentation in the Doc dir label Oct 24, 2008
@benjaminp
Copy link
Contributor

Thanks for the report! Fixed in r67011.

@ezio-melotti ezio-melotti transferred this issue from another repository Apr 10, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
docs Documentation in the Doc dir
Projects
None yet
Development

No branches or pull requests

2 participants