[Python-checkins] cpython (3.4): Issue #25127: Fix typo in concurrent.futures.rst

berker.peksag python-checkins at python.org
Tue Sep 15 19:00:07 CEST 2015


https://hg.python.org/cpython/rev/8f94e695f56b
changeset:   98009:8f94e695f56b
branch:      3.4
parent:      98001:6a8aa246485e
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Tue Sep 15 19:59:03 2015 +0300
summary:
  Issue #25127: Fix typo in concurrent.futures.rst

Reported by Jakub Wilk.

files:
  Doc/library/concurrent.futures.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst
--- a/Doc/library/concurrent.futures.rst
+++ b/Doc/library/concurrent.futures.rst
@@ -75,7 +75,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')
 
 
 ThreadPoolExecutor

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list