index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
multiprocessing
/
managers.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-46565: `del` loop vars that are leaking into module namespaces (GH-30993)
Nikita Sobolev
2022-02-03
1
-5/+5
*
bpo-38840: Incorrect __all__ in multiprocessing.managers (GH-18034)
Zackery Spytz
2021-08-09
1
-3/+4
*
Remove unnecessary pass statements (GH-27103)
Elisha Hollander
2021-07-13
1
-1/+0
*
bpo-30256: Add manager_owned keyword arg to AutoProxy (GH-16341)
finefoot
2021-07-02
1
-2/+2
*
bpo-43867: multiprocessing Server catchs SystemExit (GH-25441)
Victor Stinner
2021-04-16
1
-6/+14
*
Fix two typos in multiprocessing (GH-19571)
Galden
2020-04-18
1
-2/+2
*
bpo-39481: PEP 585 for a variety of modules (GH-19423)
Batuhan Taşkaya
2020-04-10
1
-0/+3
*
bpo-39850: Add support for abstract sockets in multiprocessing (GH-18866)
Pablo Galindo
2020-03-09
1
-1/+5
*
Remove binding of captured exceptions when not used to reduce the chances of ...
Pablo Galindo
2019-11-19
1
-2/+2
*
[3.9] bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-12620)
Serhiy Storchaka
2019-06-05
1
-41/+3
*
bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700)
Serhiy Storchaka
2019-06-01
1
-7/+4
*
bpo-36867: Create the resource_tracker before launching SharedMemoryManagers ...
Pierre Glaser
2019-05-13
1
-0/+9
*
bpo-36368: Ignore SIGINT in SharedMemoryManager servers. (GH-12483)
Pierre Glaser
2019-05-10
1
-0/+4
*
bpo-36542: Allow to overwrite the signature for Python functions. (GH-12705)
Serhiy Storchaka
2019-05-06
1
-0/+2
*
bpo-36492: Deprecate passing some arguments as keyword arguments. (GH-12637)
Serhiy Storchaka
2019-04-01
1
-4/+43
*
bpo-35813: Tests and docs for shared_memory (#11816)
Davin Potts
2019-02-24
1
-2/+149
*
bpo-35918: Remove broken has_key method and add test (#11819)
Rémi Lapeyre
2019-02-12
1
-1/+1
*
bpo-34610: Fixed iterator of multiprocessing.managers.DictProxy. (GH-9113)
Serhiy Storchaka
2018-09-17
1
-1/+4
*
bpo-34054: multiprocessing uses time.monotonic() (GH-8118)
Victor Stinner
2018-07-06
1
-3/+3
*
bpo-5001: More-informative multiprocessing error messages (#3079)
Allen W. Smith, Ph.D
2017-08-29
1
-10/+44
*
bpo-5001, bpo-31169: Fix two uninformative asserts in multiprocessing/manager...
Allen W. Smith, Ph.D
2017-08-12
1
-7/+10
*
bpo-29293: multiprocessing.Condition.notify() lacks parameter `n` (#2480)
Antoine Pitrou
2017-07-04
1
-2/+2
*
bpo-29776: Use decorator syntax for properties. (#585)
Serhiy Storchaka
2017-03-19
1
-1/+3
*
Issue #28053: Applying refactorings, docs and other cleanup to follow.
Davin Potts
2016-09-09
1
-3/+2
*
Issue #21201: Improves readability of multiprocessing error message from serv...
Davin Potts
2016-09-08
1
-1/+1
|
\
|
*
Issue #21201: Improves readability of multiprocessing error message from serv...
Davin Potts
2016-09-08
1
-1/+1
*
|
Fixes issue #6766: Updated multiprocessing Proxy Objects to support nesting
Davin Potts
2016-09-07
1
-25/+70
|
/
*
Issue #26778: Fixed "a/an/and" typos in code comment and documentation.
Serhiy Storchaka
2016-04-17
1
-1/+1
*
Issue #22033: Reprs of most Python implemened classes now contain actual
Serhiy Storchaka
2014-07-25
1
-5/+5
*
Issue #21565: multiprocessing: use contex-manager protocol for synchronization
Charles-François Natali
2014-05-25
1
-20/+5
*
Issue #20980: Stop wrapping exception when using ThreadPool.
Richard Oudkerk
2014-03-23
1
-3/+8
*
Issue #18999: Make multiprocessing use context objects.
Richard Oudkerk
2013-10-16
1
-4/+7
*
Issue #8713: Support alternative start methods in multiprocessing on Unix.
Richard Oudkerk
2013-08-14
1
-21/+23
*
Issue #17261: Ensure multiprocessing's proxies use proper address.
Richard Oudkerk
2013-07-02
1
-0/+1
|
\
|
*
Issue #17261: Ensure multiprocessing's proxies use proper address.
Richard Oudkerk
2013-07-02
1
-0/+1
*
|
Replace IOError with OSError (#16715)
Andrew Svetlov
2012-12-25
1
-1/+1
|
/
*
Issue #15064: Make BaseManager.__enter__() start server if necessary.
Richard Oudkerk
2012-06-18
1
-0/+3
*
Increase timeout used when waiting for manager to shutdown cleanly
Richard Oudkerk
2012-06-15
1
-1/+1
*
Issue #14059: Implement multiprocessing.Barrier
Richard Oudkerk
2012-06-15
1
-0/+21
*
Issue #13841: Make child processes exit using sys.exit() on Windows
Richard Oudkerk
2012-06-14
1
-38/+29
*
Issue #3518: Remove references to non-existent BaseManager.from_address()
Richard Oudkerk
2012-06-11
1
-4/+0
*
Remove __getslice__, __setslice__, __delslice__ methods from proxies
Richard Oudkerk
2012-05-29
1
-6/+5
*
Make AcquirerProxy.acquire() support timeout argument
Richard Oudkerk
2012-05-06
1
-2/+3
*
Fix dangling warning for test_multiprocessing
Richard Oudkerk
2012-05-03
1
-1/+4
*
Mark multiprocessing files with "Licensed to PSF under a Contributor Agreement"
Richard Oudkerk
2012-04-30
1
-26/+1
*
Issue #14087: multiprocessing: add Condition.wait_for(). Patch by sbt.
Charles-François Natali
2012-04-17
1
-0/+19
*
Issue #13565: Increase multiprocessing's server socket backlog, to avoid
Charles-François Natali
2011-12-23
1
-1/+1
|
\
|
*
Issue #13565: Increase multiprocessing's server socket backlog, to avoid
Charles-François Natali
2011-12-23
1
-1/+1
*
|
Issue #12708: Add starmap() and starmap_async() methods (similar to itertools...
Antoine Pitrou
2011-12-21
1
-1/+2
*
|
Remove unused or redundant imports in concurrent.futures and multiprocessing.
Florent Xicluna
2011-11-11
1
-5/+1
|
/
[next]