Issue #27895: Spelling fixes (Contributed by Ville Skyttä).

This commit is contained in:
Martin Panter 2016-09-07 12:03:06 +00:00
parent be8da9c990
commit 0be894b2f6
52 changed files with 70 additions and 70 deletions

View file

@ -63,7 +63,7 @@ import traceback
# interpreter to exit when there are still idle processes in a
# ProcessPoolExecutor's process pool (i.e. shutdown() was not called). However,
# allowing workers to die with the interpreter has two undesirable properties:
# - The workers would still be running during interpretor shutdown,
# - The workers would still be running during interpreter shutdown,
# meaning that they would fail in unpredictable ways.
# - The workers could be killed while evaluating a work item, which could
# be bad if the callable being evaluated has external side-effects e.g.