summaryrefslogtreecommitdiffstats
path: root/Lib/multiprocessing/managers.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-46565: `del` loop vars that are leaking into module namespaces (GH-30993)Nikita Sobolev2022-02-031-5/+5
* 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
* bpo-43867: multiprocessing Server catchs SystemExit (GH-25441)Victor Stinner2021-04-161-6/+14
* Fix two typos in multiprocessing (GH-19571)Galden2020-04-181-2/+2
* bpo-39481: PEP 585 for a variety of modules (GH-19423)Batuhan Taşkaya2020-04-101-0/+3
* bpo-39850: Add support for abstract sockets in multiprocessing (GH-18866)Pablo Galindo2020-03-091-1/+5
* Remove binding of captured exceptions when not used to reduce the chances of ...Pablo Galindo2019-11-191-2/+2
* [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-011-7/+4
* bpo-36867: Create the resource_tracker before launching SharedMemoryManagers ...Pierre Glaser2019-05-131-0/+9
* 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-36492: Deprecate passing some arguments as keyword arguments. (GH-12637)Serhiy Storchaka2019-04-011-4/+43
* bpo-35813: Tests and docs for shared_memory (#11816)Davin Potts2019-02-241-2/+149
* bpo-35918: Remove broken has_key method and add test (#11819)Rémi Lapeyre2019-02-121-1/+1
* bpo-34610: Fixed iterator of multiprocessing.managers.DictProxy. (GH-9113)Serhiy Storchaka2018-09-171-1/+4
* bpo-34054: multiprocessing uses time.monotonic() (GH-8118)Victor Stinner2018-07-061-3/+3
* bpo-5001: More-informative multiprocessing error messages (#3079)Allen W. Smith, Ph.D2017-08-291-10/+44
* bpo-5001, bpo-31169: Fix two uninformative asserts in multiprocessing/manager...Allen W. Smith, Ph.D2017-08-121-7/+10
* bpo-29293: multiprocessing.Condition.notify() lacks parameter `n` (#2480)Antoine Pitrou2017-07-041-2/+2
* bpo-29776: Use decorator syntax for properties. (#585)Serhiy Storchaka2017-03-191-1/+3
* Issue #28053: Applying refactorings, docs and other cleanup to follow.Davin Potts2016-09-091-3/+2
* Issue #21201: Improves readability of multiprocessing error message from serv...Davin Potts2016-09-081-1/+1
|\
| * Issue #21201: Improves readability of multiprocessing error message from serv...Davin Potts2016-09-081-1/+1
* | Fixes issue #6766: Updated multiprocessing Proxy Objects to support nestingDavin Potts2016-09-071-25/+70
|/
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
* Issue #22033: Reprs of most Python implemened classes now contain actualSerhiy Storchaka2014-07-251-5/+5
* Issue #21565: multiprocessing: use contex-manager protocol for synchronizationCharles-François Natali2014-05-251-20/+5
* Issue #20980: Stop wrapping exception when using ThreadPool.Richard Oudkerk2014-03-231-3/+8
* Issue #18999: Make multiprocessing use context objects.Richard Oudkerk2013-10-161-4/+7
* Issue #8713: Support alternative start methods in multiprocessing on Unix.Richard Oudkerk2013-08-141-21/+23
* Issue #17261: Ensure multiprocessing's proxies use proper address.Richard Oudkerk2013-07-021-0/+1
|\
| * Issue #17261: Ensure multiprocessing's proxies use proper address.Richard Oudkerk2013-07-021-0/+1
* | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-1/+1
|/
* Issue #15064: Make BaseManager.__enter__() start server if necessary.Richard Oudkerk2012-06-181-0/+3
* Increase timeout used when waiting for manager to shutdown cleanlyRichard Oudkerk2012-06-151-1/+1
* Issue #14059: Implement multiprocessing.BarrierRichard Oudkerk2012-06-151-0/+21
* Issue #13841: Make child processes exit using sys.exit() on WindowsRichard Oudkerk2012-06-141-38/+29
* Issue #3518: Remove references to non-existent BaseManager.from_address()Richard Oudkerk2012-06-111-4/+0
* Remove __getslice__, __setslice__, __delslice__ methods from proxiesRichard Oudkerk2012-05-291-6/+5
* Make AcquirerProxy.acquire() support timeout argumentRichard Oudkerk2012-05-061-2/+3
* Fix dangling warning for test_multiprocessingRichard Oudkerk2012-05-031-1/+4
* Mark multiprocessing files with "Licensed to PSF under a Contributor Agreement"Richard Oudkerk2012-04-301-26/+1
* Issue #14087: multiprocessing: add Condition.wait_for(). Patch by sbt.Charles-François Natali2012-04-171-0/+19
* Issue #13565: Increase multiprocessing's server socket backlog, to avoidCharles-François Natali2011-12-231-1/+1
|\
| * Issue #13565: Increase multiprocessing's server socket backlog, to avoidCharles-François Natali2011-12-231-1/+1
* | Issue #12708: Add starmap() and starmap_async() methods (similar to itertools...Antoine Pitrou2011-12-211-1/+2
* | Remove unused or redundant imports in concurrent.futures and multiprocessing.Florent Xicluna2011-11-111-5/+1
|/