summaryrefslogtreecommitdiff
path: root/Lib/multiprocessing
Commit message (Expand)AuthorAgeFilesLines
* bpo-38840: Incorrect __all__ in multiprocessing.managers (GH-18034) (GH-27684)Miss Islington (bot)2021-08-091-3/+4
* bpo-30256: Add manager_owned keyword arg to AutoProxy (GH-16341) (GH-26989)Miss Islington (bot)2021-07-011-2/+2
* Fix typo in message from assert statement (GH-21283)Miss Islington (bot)2020-09-041-1/+1
* bpo-41344: Raise ValueError when creating shared memory of size 0 (GH-21556) ...Miss Islington (bot)2020-08-301-0/+2
* bpo-39244: multiprocessing return default start method first on macOS (GH-18625)Miss Islington (bot)2020-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-152-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
* Remove binding of captured exceptions when not used to reduce the chances of ...Pablo Galindo2019-11-192-3/+3
* bpo-38707: Fix for multiprocessing.Process MainThread.native_id (GH-17088)Jake Tesler2019-11-191-0/+2
* bpo-38417: Add umask support to subprocess (GH-16726)Gregory P. Smith2019-10-121-1/+1
* bpo-38092: Reduce overhead when using multiprocessing in a Windows virtual en...Steve Dower2019-09-132-2/+2
* bpo-36046: Add user and group parameters to subprocess (GH-11950)Patrick McLean2019-09-121-1/+1
* Fix typos mostly in comments, docs and test names (GH-15209)Min ho Kim2019-08-301-1/+1
* bpo-37421: multiprocessing tests now stop ForkServer (GH-14601)Victor Stinner2019-07-051-0/+19
* bpo-37421: Fix multiprocessing get_temp_dir() finalizer (GH-14572)Victor Stinner2019-07-041-1/+13
* bpo-37369: Fix initialization of sys members when launched via an app contain...Steve Dower2019-06-291-2/+1
* [3.9] bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-12620)Serhiy Storchaka2019-06-051-41/+3
* bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700)Serhiy Storchaka2019-06-013-9/+6
* bpo-33725: multiprocessing uses spawn by default on macOS (GH-13603)Victor Stinner2019-05-281-1/+6
* bpo-36888: Add multiprocessing.parent_process() (GH-13247)Thomas Moreau2019-05-208-20/+85
* bpo-36867: Create the resource_tracker before launching SharedMemoryManagers ...Pierre Glaser2019-05-131-0/+9
* bpo-36894: Fix regression in test_multiprocessing_spawn (no tests run on Wind...Antoine Pitrou2019-05-131-4/+9
* bpo-36867: Make semaphore_tracker track other system resources (GH-13222)Pierre Glaser2019-05-106-70/+92
* bpo-36368: Ignore SIGINT in SharedMemoryManager servers. (GH-12483)Pierre Glaser2019-05-101-0/+4
* bpo-36542: Allow to overwrite the signature for Python functions. (GH-12705)Serhiy Storchaka2019-05-061-0/+2
* bpo-36766: Typos in docs and code comments (GH-13116)penguindustin2019-05-061-1/+1
* bpo-36668: FIX reuse semaphore tracker for child processes (#5172)Thomas Moreau2019-04-241-10/+26
* bpo-36492: Deprecate passing some arguments as keyword arguments. (GH-12637)Serhiy Storchaka2019-04-011-4/+43
* bpo-35493: Use Process.sentinel instead of sleeping for polling worker status...Pablo Galindo2019-03-161-11/+77
* bpo-36102: Prepend slash to all POSIX shared memory block names (#12036)Davin Potts2019-02-251-4/+10
* bpo-35813: Tests and docs for shared_memory (#11816)Davin Potts2019-02-232-319/+392
* bpo-35918: Remove broken has_key method and add test (#11819)Rémi Lapeyre2019-02-111-1/+1
* bpo-35378: Fix multiprocessing.Pool references (GH-11627)Pablo Galindo2019-02-111-38/+74
* bpo-35872 and bpo-35873: Clears __PYVENV_LAUNCHER__ variable (GH-11745)Steve Dower2019-02-032-9/+20
* bpo-35813: Added shared_memory submodule of multiprocessing. (#11664)Davin Potts2019-02-011-0/+573
* bpo-35797: Fix default executable used by the multiprocessing module (GH-11676)Steve Dower2019-01-251-1/+8
* bpo-35424: emit ResourceWarning at multiprocessing.Pool destruction (GH-10974)Victor Stinner2018-12-201-5/+18
* bpo-35491, multiprocessing: replace "RUN" with RUN (GH-11178)Victor Stinner2018-12-161-1/+1