File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -236,9 +236,9 @@ to a :class:`ProcessPoolExecutor` will result in deadlock.
236
236
An :class: `Executor ` subclass that executes calls asynchronously using a pool
237
237
of at most *max_workers * processes. If *max_workers * is ``None `` or not
238
238
given, it will default to the number of processors on the machine.
239
- If *max_workers * is lower or equal to ``0 ``, then a :exc: `ValueError `
239
+ If *max_workers * is less than or equal to ``0 ``, then a :exc: `ValueError `
240
240
will be raised.
241
- On Windows, *max_workers * must be equal or lower than ``61 ``. If it is not
241
+ On Windows, *max_workers * must be less than or equal to ``61 ``. If it is not
242
242
then :exc: `ValueError ` will be raised. If *max_workers * is ``None ``, then
243
243
the default chosen will be at most ``61 ``, even if more processors are
244
244
available.
@@ -250,7 +250,7 @@ to a :class:`ProcessPoolExecutor` will result in deadlock.
250
250
each worker process; *initargs * is a tuple of arguments passed to the
251
251
initializer. Should *initializer * raise an exception, all currently
252
252
pending jobs will raise a :exc: `~concurrent.futures.process.BrokenProcessPool `,
253
- as well any attempt to submit more jobs to the pool.
253
+ as well as any attempt to submit more jobs to the pool.
254
254
255
255
.. versionchanged :: 3.3
256
256
When one of the worker processes terminates abruptly, a
You can’t perform that action at this time.
0 commit comments