summaryrefslogtreecommitdiffstats
path: root/Lib/multiprocessing
Commit message (Expand)AuthorAgeFilesLines
* gh-107431: Make `multiprocessing.managers.{DictProxy,ListProxy}` generic (#10...Nikita Sobolev2023-11-101-2/+6
* gh-109649: Use os.process_cpu_count() (#110165)Victor Stinner2023-10-011-1/+1
* gh-109047: concurrent.futures catches PythonFinalizationError (#109810)Victor Stinner2023-09-291-5/+25
* gh-110036: multiprocessing Popen.terminate() catches PermissionError (#110037)Victor Stinner2023-09-291-2/+9
* gh-109461: Update logging module lock to use context manager (#109462)Dale Collison2023-09-271-5/+1
* gh-109593: Fix reentrancy issue in multiprocessing resource_tracker (#109629)Antoine Pitrou2023-09-261-2/+32
* gh-109370: Fix unexpected traceback output in test_concurrent_futures (GH-109...Serhiy Storchaka2023-09-261-2/+1
* gh-107219: Fix concurrent.futures terminate_broken() (#109244)Victor Stinner2023-09-111-0/+18
* gh-108520: Fix bad fork detection in nested multiprocessing use case (#108568)albanD2023-08-301-3/+5
* gh-77377: Ensure multiprocessing SemLock is valid for spawn-based Process bef...albanD2023-08-231-2/+7
* More actionable error message when spawn is incorrectly used. (#102203)Yuxin Wu2023-08-161-1/+5
* gh-107963: Fix set_forkserver_preload to check the type of given list (#107965)Dong-hee Na2023-08-151-1/+1
* gh-106558: break ref cycles through exceptions in multiprocessing manager (#...Andrew Geng2023-08-111-2/+8
* gh-106739: Add `rtype_cache` to `warnings.warn` message when leaked objects f...shailshouryya2023-07-251-3/+4
* gh-90876: Restore the ability to import multiprocessing when `sys.executable`...Gregory P. Smith2023-07-061-2/+4
* gh-104536: Improve `multiprocessing.process._cleanup` logic (#104537)Luccccifer2023-05-221-1/+1
* gh-61460: Stronger HMAC in multiprocessing (#20380)Christian Heimes2023-05-201-31/+151
* gh-84559: Remove the new multiprocessing warning, too disruptive. (#101551)Gregory P. Smith2023-02-031-27/+1
* GH-84559: Deprecate fork being the multiprocessing default. (#100618)Gregory P. Smith2023-02-021-1/+28
* gh-99509: Add `__class_getitem__` to `multiprocessing.queues.Queue` (#99511)Nikita Sobolev2022-12-271-0/+2
* Fix typo in exception message in `multiprocessing.pool` (#99900)Arne de Laat2022-11-301-1/+1
* bpo-40882: Fix a memory leak in SharedMemory on Windows (GH-20684)Zackery Spytz2022-11-251-1/+4
* gh-61460: Add a comment describing the multiprocessing.connection protocol (g...Gregory P. Smith2022-11-201-0/+68
* gh-97514: Don't use Linux abstract sockets for multiprocessing (#98501)Gregory P. Smith2022-10-201-5/+0
* gh-98360: multiprocessing now spawns children on Windows with correct argv[0]...Steve Dower2022-10-201-2/+3
* gh-97816: Remove unused variables in `mutliprocessing.managers.Server` (#97817)Koki Saito2022-10-041-1/+0
* gh-96819: multiprocessing.resource_tracker: check if length of pipe write <= ...Koki Saito2022-10-031-2/+2
* GH-83658: make multiprocessing.Pool raise an exception if maxtasksperchild is...Irit Katriel2022-06-171-0/+3
* gh-91577: SharedMemory move imports out of methods (#91579)samtygier2022-06-161-4/+3
* gh-90549: Fix leak of global named resources using multiprocessing spawn (#30...Leo Trol2022-06-092-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