bpo-32146: Add documentation about frozen executables on Unix (GH-5850)

This commit is contained in:
Bo Bayles 2019-01-10 11:51:28 -06:00 committed by Victor Stinner
parent 572168a016
commit bab4bbb4c9
2 changed files with 9 additions and 0 deletions

View file

@ -186,6 +186,13 @@ A library which wants to use a particular start method should probably
use :func:`get_context` to avoid interfering with the choice of the
library user.
.. warning::
The ``'spawn'`` and ``'forkserver'`` start methods cannot currently
be used with "frozen" executables (i.e., binaries produced by
packages like **PyInstaller** and **cx_Freeze**) on Unix.
The ``'fork'`` start method does work.
Exchanging objects between processes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~