summaryrefslogtreecommitdiffstats
path: root/Lib/multiprocessing
Commit message (Expand)AuthorAgeFilesLines
* [3.11] gh-110036: multiprocessing Popen.terminate() catches PermissionError (...Miss Islington (bot)2023-09-291-2/+9
* [3.11] gh-109593: Fix reentrancy issue in multiprocessing resource_tracker (G...Miss Islington (bot)2023-09-261-2/+32
* [3.11] gh-109370: Fix unexpected traceback output in test_concurrent_futures ...Miss Islington (bot)2023-09-261-2/+1
* [3.11] gh-107219: Fix concurrent.futures terminate_broken() (GH-109244) (#109...Miss Islington (bot)2023-09-111-0/+18
* [3.11] gh-108520: Fix bad fork detection in nested multiprocessing use case (...Miss Islington (bot)2023-08-301-3/+5
* [3.11] gh-77377: Ensure multiprocessing SemLock is valid for spawn-based Proc...Miss Islington (bot)2023-08-231-2/+7
* [3.11] More actionable error message when spawn is incorrectly used. (GH-1022...Miss Islington (bot)2023-08-161-1/+5
* [3.11] gh-107963: Fix set_forkserver_preload to check the type of given list ...Miss Islington (bot)2023-08-151-1/+1
* [3.11] gh-90876: Restore the ability to import multiprocessing when `sys.exec...Miss Islington (bot)2023-07-061-2/+4
* [3.11] gh-104536: Improve `multiprocessing.process._cleanup` logic (GH-104537...Miss Islington (bot)2023-05-221-1/+1
* [3.11] bpo-40882: Fix a memory leak in SharedMemory on Windows (GH-20684) (#9...Luke Garland2022-12-051-1/+4
* [3.11] gh-97514: Don't use Linux abstract sockets for multiprocessing (GH-985...Miss Islington (bot)2022-10-201-5/+0
* gh-98360: multiprocessing now spawns children on Windows with correct argv[0]...Miss Islington (bot)2022-10-201-2/+3
* gh-96819: multiprocessing.resource_tracker: check if length of pipe write <= ...Miss Islington (bot)2022-10-031-2/+2
* GH-83658: make multiprocessing.Pool raise an exception if maxtasksperchild is...Miss Islington (bot)2022-06-171-0/+3
* gh-91577: SharedMemory move imports out of methods (GH-91579)Miss Islington (bot)2022-06-161-4/+3
* gh-90549: Fix leak of global named resources using multiprocessing spawn (GH-...Miss Islington (bot)2022-06-102-2/+22
* gh-82616: Add process_group support to subprocess.Popen (#23930)Gregory P. Smith2022-05-051-1/+1
* bpo-47029: Fix BrokenPipeError in multiprocessing.Queue at garbage collection...Géry Ogam2022-05-031-12/+11
* GH-91355: micro-optimize Connection.send_bytes() method (gh-32247)Ma Lin2022-05-031-3/+2
* Fix missing `f` prefix on f-strings (GH-91910)Alexander Shadchin2022-04-271-1/+1
* gh-91401: Add a failsafe way to disable vfork. (#91490)Gregory P. Smith2022-04-251-1/+3
* bpo-46720: Add support for path-like objects to multiprocessing.set_executabl...Géry Ogam2022-04-222-8/+12
* gh-91231: Add shutdown_timeout to multiprocessing BaseManager (#32112)Victor Stinner2022-04-191-6/+10
* bpo-46565: `del` loop vars that are leaking into module namespaces (GH-30993)Nikita Sobolev2022-02-032-5/+6
* bpo-25066: Added repr for multiprocessing.Event (GH-29749)Kumar Aditya2021-12-091-0/+3
* bpo-38840: Incorrect __all__ in multiprocessing.managers (GH-18034)Zackery Spytz2021-08-091-3/+4
* Remove unnecessary pass statements (GH-27103)Elisha Hollander2021-07-131-1/+0
* bpo-30256: Add manager_owned keyword arg to AutoProxy (GH-16341)finefoot2021-07-021-2/+2
* Fix typos in multiple files (GH-26689)Binbin2021-06-131-1/+1
* bpo-43867: multiprocessing Server catchs SystemExit (GH-25441)Victor Stinner2021-04-161-6/+14
* bpo-43651: Fix test_compileall with PEP 597 (GH-25128)Inada Naoki2021-04-021-1/+1
* bpo-40692: Run more test_concurrent_futures tests (GH-20239)Asheesh Laroia2021-02-081-1/+9
* bpo-41344: Raise ValueError when creating shared memory of size 0 (GH-21556)Vinay Sharma2020-08-301-0/+2
* Fix typo in message from assert statement (GH-21283)Allen2020-08-171-1/+1
* bpo-39244: multiprocessing return default start method first on macOS (GH-18625)idomic2020-05-261-3/+4
* bpo-40443: Remove unused imports in stdlib (GH-19815)Victor Stinner2020-05-011-1/+0
* bpo-30966: Add multiprocessing.SimpleQueue.close() (GH-19735)Victor Stinner2020-04-271-0/+4
* bpo-40330: Fix utf-8 size check in ShareableList (GH-19606)Antoine Pitrou2020-04-201-4/+6
* bpo-38891: avoid quadratic item access performance of ShareableList (GH-18996)Thomas Krennwallner2020-04-191-30/+45
* Fix two typos in multiprocessing (GH-19571)Galden2020-04-181-2/+2
* bpo-40221: Update multiprocessing to use _at_fork_reinit (GH-19511)Dong-hee Na2020-04-142-9/+10
* bpo-40221: Update multiprocessing to use _at_fork_reinit (GH-19477)Dong-hee Na2020-04-141-4/+4
* bpo-39481: PEP 585 for a variety of modules (GH-19423)Batuhan Taşkaya2020-04-104-0/+12
* bpo-40094: Add os.waitstatus_to_exitcode() (GH-19201)Victor Stinner2020-04-012-13/+3
* bpo-39360: Ensure all workers exit when finalizing a multiprocessing Pool (GH...Batuhan Taşkaya2020-03-151-2/+5
* bpo-39850: Add support for abstract sockets in multiprocessing (GH-18866)Pablo Galindo2020-03-094-5/+40
* bpo-35727: Use exit code 0 on sys.exit() in multiprocessing.Process. (GH-11538)Christopher Hunt2020-02-211-5/+5
* bpo-39439: Fix multiprocessing spawn path in a venv on Windows (GH-18158)Adam Meily2020-01-281-1/+1
* bpo-38546: multiprocessing tests stop the resource tracker (GH-17641)Victor Stinner2019-12-172-0/+38