diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2008-09-05 15:15:56 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2008-09-05 15:15:56 (GMT) |
commit | 6024834ed9887b47cfa798f20e99d5c941b97f24 (patch) | |
tree | bc6e0854830eae7efe1f8d3bd5f1d4730f936031 /Doc/whatsnew/2.6.rst | |
parent | 3dffcd1a72d61b2f9fafac77734db84a55605a84 (diff) | |
download | cpython-6024834ed9887b47cfa798f20e99d5c941b97f24.zip cpython-6024834ed9887b47cfa798f20e99d5c941b97f24.tar.gz cpython-6024834ed9887b47cfa798f20e99d5c941b97f24.tar.bz2 |
#3671: Typo fix
Diffstat (limited to 'Doc/whatsnew/2.6.rst')
-rw-r--r-- | Doc/whatsnew/2.6.rst | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst index 951c46a..07aca50 100644 --- a/Doc/whatsnew/2.6.rst +++ b/Doc/whatsnew/2.6.rst @@ -2036,7 +2036,7 @@ changes, or look through the Subversion logs for all the details. With two iterables, *2N*-tuples are returned. :: - itertools(product([1,2], [3,4], repeat=2) -> + itertools.product([1,2], [3,4], repeat=2) -> [(1, 3, 1, 3), (1, 3, 1, 4), (1, 3, 2, 3), (1, 3, 2, 4), (1, 4, 1, 3), (1, 4, 1, 4), (1, 4, 2, 3), (1, 4, 2, 4), (2, 3, 1, 3), (2, 3, 1, 4), (2, 3, 2, 3), (2, 3, 2, 4), @@ -3212,7 +3212,8 @@ that may require changes to your code: Acknowledgements ================ -The author would like to thank the following people for offering suggestions, -corrections and assistance with various drafts of this article: -Georg Brandl, Steve Brown, Nick Coghlan, Jim Jewett, Kent Johnson, Antoine Pitrou. +The author would like to thank the following people for offering +suggestions, corrections and assistance with various drafts of this +article: Georg Brandl, Steve Brown, Nick Coghlan, Jim Jewett, Kent +Johnson, Chris Lambacher, Antoine Pitrou. |