[Python-checkins] r88502 - python/branches/release32-maint/Doc/whatsnew/3.2.rst

terry.reedy python-checkins at python.org
Tue Feb 22 17:24:07 CET 2011


Author: terry.reedy
Date: Tue Feb 22 17:24:07 2011
New Revision: 88502

Log:
Fix typo reported by 'Paddy' on python-list.


Modified:
   python/branches/release32-maint/Doc/whatsnew/3.2.rst

Modified: python/branches/release32-maint/Doc/whatsnew/3.2.rst
==============================================================================
--- python/branches/release32-maint/Doc/whatsnew/3.2.rst	(original)
+++ python/branches/release32-maint/Doc/whatsnew/3.2.rst	Tue Feb 22 17:24:07 2011
@@ -270,7 +270,7 @@
       e.submit(shutil.copy, 'src1.txt', 'dest1.txt')
       e.submit(shutil.copy, 'src2.txt', 'dest2.txt')
       e.submit(shutil.copy, 'src3.txt', 'dest3.txt')
-      e.submit(shutil.copy, 'src3.txt', 'dest4.txt')
+      e.submit(shutil.copy, 'src4.txt', 'dest4.txt')
 
 .. seealso::
 


More information about the Python-checkins mailing list