summaryrefslogtreecommitdiff
path: root/Lib/multiprocessing/connection.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-17560: Too small type for struct.pack/unpack in mutliprocessing.Connectio...Alexander Buchkovsky2018-11-061-10/+20
* bpo-34054: multiprocessing uses time.monotonic() (GH-8118)Victor Stinner2018-07-061-4/+4
* bpo-5001: More-informative multiprocessing error messages (#3079)Allen W. Smith, Ph.D2017-08-301-2/+6
* bpo-29776: Use decorator syntax for properties. (#585)Serhiy Storchaka2017-03-191-2/+7
* Issue #28053: Applying refactorings, docs and other cleanup to follow.Davin Potts2016-09-091-4/+4
* Issue #25899: Converted non-ASCII characters in docstrings and manpageSerhiy Storchaka2015-12-181-1/+1
* Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-101-5/+10
|\
| * Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-101-5/+10
* | Issue #18382: Zero-length messages are consumed by ReadFile on Windows 8 and ...Steve Dower2015-03-021-2/+11
|\ \ | |/
| * Issue #18382: Zero-length messages are consumed by ReadFile on Windows 8 and ...Steve Dower2015-03-021-2/+11
* | Issue #23285: PEP 475 -- Retry system calls failing with EINTR.Charles-François Natali2015-02-071-15/+3
* | Issue #22581: Use more "bytes-like object" throughout the docs and comments.Serhiy Storchaka2014-12-051-1/+1
|\ \ | |/
| * Issue #22581: Use more "bytes-like object" throughout the docs and comments.Serhiy Storchaka2014-12-051-1/+1
* | Simplify code in multiprocessing.Connection.send_bytes().Antoine Pitrou2014-07-311-9/+6
|/
* do not generate pipe names in the temporary dirBenjamin Peterson2014-04-141-1/+1
* Issue #20976: pyflakes: Remove unused importsVictor Stinner2014-03-201-1/+0
* Issue #20978: pyflakes: fix undefined namesVictor Stinner2014-03-201-1/+1
* Issue #20540: Fix a performance regression (vs. Python 3.2) when layering a m...Antoine Pitrou2014-02-081-6/+16
|\
| * Issue #20540: Fix a performance regression (vs. Python 3.2) when layering a m...Antoine Pitrou2014-02-081-6/+16
* | Issue #17276: MD5 as default digestmod for HMAC is deprecated. The HMACChristian Heimes2013-11-201-2/+2
* | Issue #18934: Use poll/select-based selectors for multiprocessing.Connection,Charles-François Natali2013-09-081-1/+9
* | Issue #18934: multiprocessing: use selectors module.Charles-François Natali2013-09-051-35/+16
* | Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-281-2/+4
* | Issue #8713: Support alternative start methods in multiprocessing on Unix.Richard Oudkerk2013-08-141-20/+41
* | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-041-1/+1
* | Issue #17097: Merge.Richard Oudkerk2013-07-011-3/+15
|\ \ | |/
| * Issue #17097: Make multiprocessing ignore EINTR.Richard Oudkerk2013-07-011-3/+15
| * Fix issue #17707: multiprocessing.Queue's get() method does not block for sho...Giampaolo Rodola'2013-04-171-1/+1
| * fix for previous commit related to issue 10527 which didn't have the intended...Giampaolo Rodola'2013-01-141-23/+25
* | Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-131-1/+1
* | Fix issue #17707: multiprocessing.Queue's get() method does not block for sho...Giampaolo Rodola'2013-04-171-1/+1
* | Issue #17025: Add dumps() and loads() to ForkingPickler.Charles-François Natali2013-03-241-5/+2
* | fix for previous commit related to issue 10527 which didn't have the intended...Giampaolo Rodola'2013-01-141-23/+25
* | Issue #16955: Fix the poll() method for multiprocessing's socketRichard Oudkerk2013-01-131-1/+1
|\ \ | |/
| * Issue #16955: Fix the poll() method for multiprocessing's socketRichard Oudkerk2013-01-131-1/+1
* | Fix issue 10527: make multiprocessing use poll() instead of select() if avail...Giampaolo Rodola'2012-12-311-0/+21
|\ \ | |/
| * Fix issue 10527: make multiprocessing use poll() instead of select() if avail...Giampaolo Rodola'2012-12-311-0/+21
| |\
| | * Fix issue 10527: make multiprocessing use poll() instead of select() if avail...Giampaolo Rodola'2012-12-311-0/+21
| | * Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses.Richard Oudkerk2012-07-271-0/+5
| | * Fix for issue 14725 for 3.2 branchRichard Oudkerk2012-05-051-1/+4
* | | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-7/+7
* | | Issue #16719: Get rid of WindowsError. Use OSError insteadAndrew Svetlov2012-12-191-1/+1
|/ /
* | Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses.Richard Oudkerk2012-07-271-0/+5
* | Issue #15064: Implement context manager protocol for multiprocessing typesRichard Oudkerk2012-06-181-1/+17
* | Issue #14753: Make multiprocessing treat negative timeouts as it did in 3.2Richard Oudkerk2012-05-101-6/+1
* | Fix for Issue 14725 for 3.3 branch.Richard Oudkerk2012-05-051-9/+17
* | Mark multiprocessing files with "Licensed to PSF under a Contributor Agreement"Richard Oudkerk2012-04-301-26/+1
* | Issue #4892: multiprocessing Connections can now be transferred over multipro...Antoine Pitrou2012-04-241-2/+22
* | Issue #11750: The Windows API functions scattered in the _subprocess andAntoine Pitrou2012-04-181-62/+62
* | Issue #14522: Avoid duplicating socket handles in multiprocessing.connection.Antoine Pitrou2012-04-071-12/+3