Skip to content

Commit 850564d

Browse files
committed
Revert "changing versionchanged to versionadded"
1 parent 837ead9 commit 850564d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Doc/library/concurrent.futures.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ Executor Objects
7171
:class:`ThreadPoolExecutor` and :class:`InterpreterPoolExecutor`,
7272
*chunksize* has no effect.
7373

74-
.. versionadded:: 3.5
74+
.. versionchanged:: 3.5
7575
Added the *chunksize* parameter.
7676

77-
.. versionadded:: 3.14
77+
.. versionchanged:: 3.14
7878
Added the *buffersize* parameter.
7979

8080
.. method:: shutdown(wait=True, *, cancel_futures=False)
@@ -114,7 +114,7 @@ Executor Objects
114114
e.submit(shutil.copy, 'src4.txt', 'dest4.txt')
115115

116116
.. versionadded:: 3.9
117-
Added *cancel_futures*.
117+
Added the *cancel_futures* parameter.
118118

119119

120120
ThreadPoolExecutor
@@ -181,12 +181,12 @@ And::
181181
should be higher than the number of workers
182182
for :class:`ProcessPoolExecutor`.
183183

184-
.. versionadded:: 3.6
184+
.. versionchanged:: 3.6
185185
Added the *thread_name_prefix* parameter to allow users to
186186
control the :class:`threading.Thread` names for worker threads created by
187187
the pool for easier debugging.
188188

189-
.. versionadded:: 3.7
189+
.. versionchanged:: 3.7
190190
Added the *initializer* and *initargs* arguments.
191191

192192
.. versionchanged:: 3.8
@@ -202,7 +202,7 @@ And::
202202
Default value of *max_workers* is changed to
203203
``min(32, (os.process_cpu_count() or 1) + 4)``.
204204

205-
.. versionadded:: 3.14
205+
.. versionchanged:: 3.14
206206
Added *ctxkwargs* to pass additional arguments to ``cls.prepare_context``
207207
class method.
208208

@@ -402,13 +402,13 @@ to a :class:`ProcessPoolExecutor` will result in deadlock.
402402
was undefined but operations on the executor or its futures would often
403403
freeze or deadlock.
404404

405-
.. versionadded:: 3.7
405+
.. versionchanged:: 3.7
406406
The *mp_context* argument was added to allow users to control the
407407
start_method for worker processes created by the pool.
408408

409409
Added the *initializer* and *initargs* arguments.
410410

411-
.. versionadded:: 3.11
411+
.. versionchanged:: 3.11
412412
The *max_tasks_per_child* argument was added to allow users to
413413
control the lifetime of workers in the pool.
414414

0 commit comments

Comments
 (0)