Skip to content
Merged
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
NEWS entry.
  • Loading branch information
gpshead committed Jan 1, 2023
commit 7d48e864bb9b6034f08b88d8ad32aa4657829acd
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
The :mod:`multiprocessing` module and
:class:`concurrent.futures.ProcessPoolExecutor` will emit a
:exc:`DeprecationWarning` on Linux and other non-macOS POSIX systems when
the default multiprocessing start method of ``'fork'`` is used implicitly
rather than being explicitly specified through a
:func:`multiprocessing.get_context` context.

This is in preparation for default start method to change in Python 3.14 to
a default that is safe for multithreaded applications.