[issue3671] What's New in 2.6 - corrections

2008-12-29 Thread Georg Brandl
Changes by Georg Brandl : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[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]> ___ ___ P

[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-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-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 li

[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]> ___

[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 reque