summaryrefslogtreecommitdiffstats
path: root/Lib/test/_test_venv_multiprocessing.py
Commit message (Collapse)AuthorAgeFilesLines
* gh-102515: Remove unused imports in the `Lib/` directory (#102516)Alex Waygood2023-03-081-1/+0
|
* GH-84559: Deprecate fork being the multiprocessing default. (#100618)Gregory P. Smith2023-02-021-0/+1
| | | | | | | | This starts the process. Users who don't specify their own start method and use the default on platforms where it is 'fork' will see a DeprecationWarning upon multiprocessing.Pool() construction or upon multiprocessing.Process.start() or concurrent.futures.ProcessPool use. See the related issue and documentation within this change for details.
* gh-98360: multiprocessing now spawns children on Windows with correct ↵Steve Dower2022-10-201-0/+40
argv[0] in virtual environments (GH-98462)