[issue3671] What's New in 2.6 - corrections

2008-12-29 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3671 ___ ___

[issue3671] What's New in 2.6 - corrections

2008-09-05 Thread Chris Lambacher
Chris Lambacher [EMAIL PROTECTED] added the comment: In rev66217, the itertools example for With two iterables, 2N-tuples are returned. has a typo: itertools(product([1,2], [3,4], repeat=2) should be: itertools.product([1,2], [3,4], repeat=2) -- nosy: +lambacck

[issue3671] What's New in 2.6 - corrections

2008-09-05 Thread A.M. Kuchling
A.M. Kuchling [EMAIL PROTECTED] added the comment: itertools(product typo fixed in rev. 66231. ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3671 ___ ___

[issue3671] What's New in 2.6 - corrections

2008-09-04 Thread A.M. Kuchling
A.M. Kuchling [EMAIL PROTECTED] added the comment: Many of the items are fixed in rev66217; thanks! A few of them were fixed in the revisions I did this past weekend. Not fixed: * the links for apply() and map() in the PEP 371 section. Georg, is there a way to override where the methods

[issue3671] What's New in 2.6 - corrections

2008-09-04 Thread Kent Johnson
Kent Johnson [EMAIL PROTECTED] added the comment: For the itertools examples, perhaps you could remove the [ ] from the result text so it doesn't look like a list. For example: itertools.izip_longest([1,2,3], [1,2,3,4,5]) - (1, 1), (2, 2), (3, 3), (None, 4), (None, 5)

[issue3671] What's New in 2.6 - corrections

2008-08-24 Thread Kent Johnson
New submission from Kent Johnson [EMAIL PROTECTED]: These are minor corrections to the What's New in Python 2.6[b3] doc. Note: the PEP references are to the headers in What's New, not the actual PEPs - PEP 371: The multiprocessing Package - apply() or apply_async, adding a single

[issue3671] What's New in 2.6 - corrections

2008-08-24 Thread Georg Brandl
Changes by Georg Brandl [EMAIL PROTECTED]: -- assignee: georg.brandl - akuchling nosy: +akuchling ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3671 ___