summaryrefslogtreecommitdiffstats
path: root/Lib/multiprocessing
Commit message (Expand)AuthorAgeFilesLines
* Fix pyflakes warnings: variable is assigned to but never used (#142294)Victor Stinner2025-12-081-2/+1
* gh-142206: multiprocessing.resource_tracker: Decode messages using older prot...Petr Viktorin2025-12-031-18/+45
* gh-133146: Add the old public `get_value` method to documentation and refacto...Duprat2025-11-292-5/+10
* gh-98552: Revert (unneeded, already done elsewhere) "flush std streams in the...Gregory P. Smith2025-11-231-1/+0
* gh-98552: flush std streams in the multiprocessing forkserver before fork (#1...Gregory P. Smith2025-11-221-0/+1
* gh-98896: resource_tracker: use json&base64 to allow arbitrary shared memory ...Rani Pinchuk2025-11-121-8/+52
* gh-137928: remove redundant size validation in multiprocessing.heap (GH-137929)Alejandro Cabello Jiménez2025-11-121-4/+0
* gh-140485: Catch ChildProcessError in multiprocessing resource tracker (GH-14...Victor Stinner2025-11-111-1/+6
* gh-140734: fix off-by-one error when comparing to `_SUN_PATH_MAX` (#140903)Bénédikt Tran2025-11-071-8/+12
* gh-138813: Fix mutable default kwargs={} in multiprocessing BaseProcess and D...Denis Sergeev2025-09-172-3/+3
* gh-126631: gh-137996: fix pre-loading of `__main__` (GH-135295)Duane Griffin2025-09-071-4/+5
* gh-118981: multiprocessing.popen_spawn_posix, fix potential hang (gh-118982)Albert Zeyer2025-09-071-0/+4
* gh-131788: make resource_tracker re-entrant safe (GH-131787)Thomas Grainger2025-08-131-70/+93
* gh-136839: Refactor simple dict.update calls (#136811)Disconnect3d2025-07-191-6/+2
* gh-135335: flush stdout/stderr in forkserver after preloading modules (#135338)Duane Griffin2025-06-181-0/+4
* gh-80334: fix multiprocessing.freeze_support for other spawn platforms (GH-13...Eddy Mulyono2025-05-241-1/+1
* gh-132124: improve safety nets for creating AF_UNIX socket files (GH-134085)Bénédikt Tran2025-05-212-3/+78
* gh-133017: Improve error message for invalid typecodes in multiprocessing.{Ar...Tomas R.2025-05-091-1/+6
* gh-131913: multiprocessing: add interrupt for POSIX (GH-132453)pulkin2025-04-232-0/+10
* gh-132561: Fix the public `multiprocessing.SemLock.locked` method (#132586)Duprat2025-04-171-1/+1
* gh-115942: Add `locked` to several multiprocessing locks (#115944)sobolevn2025-04-082-2/+7
* gh-131233: remove return-in-finally in multiprocessing/connection.py (#131416)Irit Katriel2025-03-211-14/+24
* gh-88887: Cleanup `multiprocessing.resource_tracker.ResourceTracker` upon del...luccabb2025-03-201-20/+44
* gh-129948: Add `set()` to `multiprocessing.managers.SyncManager` (#129949)mingyu2025-02-231-0/+31
* gh-129205: Update multiprocessing.forkserver to use os.readinto() (#129425)Cody Maloney2025-01-301-6/+7
* remove type annotations from multiprocessing. (#129381)Gregory P. Smith2025-01-302-2/+2
* gh-127586: multiprocessing.Pool does not properly restore blocked signals (tr...Stephen Hansen2024-12-271-3/+4
* Revert "gh-127586: properly restore blocked signals in resource_tracker.py (G...Hugo van Kemenade2024-12-161-4/+3
* gh-127586: properly restore blocked signals in resource_tracker.py (GH-127587)Stephen Hansen2024-12-151-3/+4
* Add the missing `f` on an f-string error message in multiprocessing. (GH-127462)Gregory P. Smith2024-12-011-1/+1
* gh-97514: Authenticate the forkserver control socket. (GH-99309)Gregory P. Smith2024-11-203-14/+74
* gh-71936: Fix race condition in multiprocessing.Pool (GH-124973)Petr Viktorin2024-11-131-13/+20
* gh-117378: Fix multiprocessing forkserver preload sys.path inheritance. (GH-1...Gregory P. Smith2024-11-091-0/+2
* gh-125679: multiprocessing Lock and RLock - fix invalid representation string...Duprat2024-11-071-2/+2
* Cleanup multiprocessing comment and unusual import error message (#126532)Gregory P. Smith2024-11-071-8/+7
* gh-126417: Register multiprocessing proxy types to an appropriate collections...Stephen Morton2024-11-051-1/+5
* gh-125620: Remove unnecessary import of subprocess in spawnv_passfds (#125624)Furkan Onder2024-10-161-1/+0
* gh-84559: Change the multiprocessing start method default to `forkserver` (GH...Gregory P. Smith2024-09-261-13/+13
* gh-121313: multiprocessing: simplify by increasing the connection buffer size...Inada Naoki2024-09-031-16/+4
* gh-121313: Limit the reading size from pipes to their default buffer size on ...Alexander P.2024-08-311-3/+18
* gh-121381 Remove subprocess._USE_VFORK escape hatch (#121383)Cody Maloney2024-07-311-2/+1
* gh-121288: Make error message for index() methods consistent (GH-121395)Serhiy Storchaka2024-07-051-1/+1
* gh-120417: Add #noqa to used imports in the stdlib (#120421)Victor Stinner2024-06-132-2/+2
* gh-103134: Update multiprocessing.managers.ListProxy and DictProxy (GH-103133)Roy Hyunjin Han2024-05-201-7/+11
* gh-83856: Honor atexit for all multiprocessing start methods (GH-114279)Tian Gao2024-05-033-5/+10
* gh-118293: Suppress mouse cursor feedback when launching Windows processes wi...Henrik Tunedal2024-04-281-1/+3
* gh-71052: Change Android's `sys.platform` from "linux" to "android"Malcolm Smith2024-03-111-5/+1
* bpo-43952: Fix multiprocessing Listener authkey bug (GH-25845)Miguel Brito2024-02-271-1/+2
* gh-71052: Enable test_concurrent_futures on platforms that lack multiprocessi...Malcolm Smith2024-02-251-2/+0
* gh-104090: Add exit code to multiprocessing ResourceTracker (GH-115410)Petr Viktorin2024-02-211-6/+32