History log of /external/python/cpython2/Lib/multiprocessing/connection.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
1aa2c0f073bdbed4fa824591d53e20bbf3d01add 10-Apr-2015 Serhiy Storchaka <storchaka@gmail.com> Issue #23865: close() methods in multiple modules now are idempotent and more
robust at shutdown. If needs to release multiple resources, they are released
even if errors are occured.
/external/python/cpython2/Lib/multiprocessing/connection.py
7fe04f1dca5820c43416145789f4cc2b94e918b8 13-Feb-2015 Serhiy Storchaka <storchaka@gmail.com> Issue #21849: Fixed xmlrpclib serialization of non-ASCII unicode strings in
the multiprocessing module.
/external/python/cpython2/Lib/multiprocessing/connection.py
e03d3fdd204f6e702c9fb3129a50b290294e2a00 14-Apr-2014 Benjamin Peterson <benjamin@python.org> do not generate pipe names in the temporary dir
/external/python/cpython2/Lib/multiprocessing/connection.py
c8ef9bc69471b3f5a789dad61d2330cf8193926c 15-Jul-2013 Richard Oudkerk <shibturn@gmail.com> Issue #18455: multiprocessing should not retry connect() with same socket.
/external/python/cpython2/Lib/multiprocessing/connection.py
41072db7099def8bcd26b5d64cb52f8fb6315adb 01-Jul-2013 Richard Oudkerk <shibturn@gmail.com> Issue #17097: Make multiprocessing ignore EINTR.
/external/python/cpython2/Lib/multiprocessing/connection.py
7796b08664d07e65b9b7bb612fce8cbd99a26c55 15-Jan-2013 Richard Oudkerk <shibturn@gmail.com> Issue #10527: Remove dead code
/external/python/cpython2/Lib/multiprocessing/connection.py
049a378cd7e2ec097715eb08d420b7fe3cd6b49a 03-Jan-2013 Giampaolo Rodola' <g.rodola@gmail.com> issue 10527: fix missing import
/external/python/cpython2/Lib/multiprocessing/connection.py
cef2006eaff86f843b8f0fc21fc7b652415b96ed 31-Dec-2012 Giampaolo Rodola' <g.rodola@gmail.com> Fix issue 10527: make multiprocessing use poll() instead of select() if available.
/external/python/cpython2/Lib/multiprocessing/connection.py
e4b9938d77950811a47fb673ecb4d4554a4efec1 27-Jul-2012 Richard Oudkerk <shibturn@gmail.com> Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses.

Original patch by J Derek Wilson.
/external/python/cpython2/Lib/multiprocessing/connection.py
9a16fa69dda64ed01b2239a732c0445f22babb57 05-May-2012 Richard Oudkerk <shibturn@gmail.com> Fix for issue 14725 for 2.7 branch
/external/python/cpython2/Lib/multiprocessing/connection.py
709aa35a7a2e706d4c21b5ece772382853ae806c 04-Feb-2012 Charles-François Natali <neologix@free.fr> Issue #8184: Fix a potential file descriptor leak when a
multiprocessing.Connection socket can't be bound.
/external/python/cpython2/Lib/multiprocessing/connection.py
79af245fb24a3608c341410ab9c782ce930401fe 14-Dec-2010 R. David Murray <rdmurray@bitdance.com> Merged revisions 87225 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
r87225 | r.david.murray | 2010-12-13 20:38:16 -0500 (Mon, 13 Dec 2010) | 2 lines

9162: fix license in multiprocessing files
........
/external/python/cpython2/Lib/multiprocessing/connection.py
2f8c8f47c740cadee8c16e5e07657e4657f905ec 03-Jul-2010 Jesse Noller <jnoller@gmail.com> Submit patch for bug 9144; broken imports due to r81380
/external/python/cpython2/Lib/multiprocessing/connection.py
c562ca4625992836919b5f787bd9cb288226dae7 13-Nov-2009 Antoine Pitrou <solipsis@pitrou.net> Issue #7318: multiprocessing now uses a timeout when it fails to establish
a connection with another process, rather than looping endlessly. The
default timeout is 20 seconds, which should be amply sufficient for
local connections.
/external/python/cpython2/Lib/multiprocessing/connection.py
459a6481662c62d6cb57a070d21230db3e721c56 30-Mar-2009 Jesse Noller <jnoller@gmail.com> Issue 5177: use socket.SO_REUSEADDR on multiprocessing SocketManager sockets
/external/python/cpython2/Lib/multiprocessing/connection.py
0c519b3a5e847eea0dffb51ac8df7c68891daf70 25-Aug-2008 Neal Norwitz <nnorwitz@gmail.com> Fix problem reported by pychecker where AuthenticationError wasn't imported.
Add some test coverage to this code. More tests should be added (TODO added).

R=Brett
TESTED=./python -E -tt ./Lib/test/regrtest.py test_multiprocessing
/external/python/cpython2/Lib/multiprocessing/connection.py
5d35373706a21dfb11765f92dfbde961c9ed4e8c 11-Aug-2008 Jesse Noller <jnoller@gmail.com> Fix the connection refused error part of issue 3419, use errno module instead of a static list of possible connection refused messages.
/external/python/cpython2/Lib/multiprocessing/connection.py
f8d62d23e9b02c557b2bbe69f693fc14c2574281 11-Aug-2008 Jesse Noller <jnoller@gmail.com> Remove the fqdn call for issue 3270
/external/python/cpython2/Lib/multiprocessing/connection.py
9752195a71fb1c4c706fc5d333bb10d38752b114 06-Aug-2008 Mark Dickinson <dickinsm@gmail.com> Docstring typo
/external/python/cpython2/Lib/multiprocessing/connection.py
9949d6ed4b74e50566abc85ac0154a664e6436ee 15-Jul-2008 Jesse Noller <jnoller@gmail.com> Revert 3270 patch: self._address is in pretty widespread use, need to revisit
/external/python/cpython2/Lib/multiprocessing/connection.py
9ace15ca25e1e72e1b943190a5f4efbd7d118de3 15-Jul-2008 Jesse Noller <jnoller@gmail.com> multiprocessing/connection.py patch to remove fqdn oddness for issue 3270
/external/python/cpython2/Lib/multiprocessing/connection.py
b09c9396cd74a50c237b77c76efa70e4a1aca863 25-Jun-2008 Benjamin Peterson <benjamin@python.org> use byte literals in multiprocessing
/external/python/cpython2/Lib/multiprocessing/connection.py
7f03ea77bf43257789469b5cbc16982eb0a63b0f 13-Jun-2008 Benjamin Peterson <benjamin@python.org> darn! I converted half of the files the wrong way.
/external/python/cpython2/Lib/multiprocessing/connection.py
dfd79494ce78868c937dc91eddd630cbdcae5611 13-Jun-2008 Benjamin Peterson <benjamin@python.org> convert multiprocessing to unix line endings
/external/python/cpython2/Lib/multiprocessing/connection.py
190d56e00990eadce8ad1b7d1785016cc109db7b 11-Jun-2008 Benjamin Peterson <benjamin@python.org> add the multiprocessing package to fulfill PEP 371
/external/python/cpython2/Lib/multiprocessing/connection.py