Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
doc typo fix, unnecessary method change revert.
  • Loading branch information
gpshead committed Feb 1, 2023
commit 7078986d2627b67d3738c86cbc5965a83f5e2d5b
2 changes: 1 addition & 1 deletion Doc/library/concurrent.futures.rst
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ to a :class:`ProcessPoolExecutor` will result in deadlock.
control the lifetime of workers in the pool.

.. versionchanged:: 3.12
The implcit use of the :mod:`multiprocessing` *fork* start method as a
The implicit use of the :mod:`multiprocessing` *fork* start method as a
platform default (see :ref:`multiprocessing-start-methods`) now raises a
:exc:`DeprecationWarning`. The default will change in Python 3.14.
Code that requires *fork* should explicitly specify that when creating
Expand Down
3 changes: 1 addition & 2 deletions Lib/multiprocessing/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,7 @@ def Manager(self):
can be used to create shared objects.
'''
from .managers import SyncManager
ctx = self.get_context()
m = SyncManager(ctx=ctx)
m = SyncManager(ctx=self.get_context())
m.start()
return m

Expand Down