summaryrefslogtreecommitdiff
path: root/Lib/asyncore.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-30980: Fix double close in asyncore.file_wrapper (#2789) (#2900)Nir Soffer2017-07-271-1/+5
* Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-181-1/+1
* Issue #16274: revert r79813:90a46f8943d0 changes to asyncore/test_asyncore.Trent Nelson2012-10-181-7/+1
* Issue #16274: backport of 3.2's asyncore/test_asyncore to 2.7.Trent Nelson2012-10-181-1/+7
* fix #10340: properly handle EINVAL on OSX and also avoid to call handle_conne...Giampaolo Rodola'2012-03-221-8/+9
* Fix issue #13694: asynchronous connect in asyncore.dispatcher does not set addr.Giampaolo Rodola'2012-03-201-0/+1
* Issue #12502: asyncore: fix polling loop with AF_UNIX sockets.Charles-François Natali2011-07-141-2/+4
* Merged revisions 88722 via svnmerge fromGiampaolo Rodolà2011-03-031-5/+9
* Fix Issue 6706: return None on connect() in case of EWOULDBLOCK/ECONNABORTED ...Giampaolo Rodolà2010-11-011-4/+7
* Merged revisions 84284 via svnmerge fromGiampaolo Rodolà2010-08-231-3/+3
* fix issue #2944: asyncore doesn't handle connection refused correctly (patch ...Giampaolo Rodolà2010-08-041-1/+4
* Merged revisions 83201 via svnmerge fromGeorg Brandl2010-08-011-0/+8
* Fix issue #8573 (asyncore._strerror bug): fixed os.strerror typo; included Na...Giampaolo Rodolà2010-05-181-2/+2
* provides a clearer warning message when cheap inheritance with the underlying...Giampaolo Rodolà2010-05-061-2/+3
* Fix asyncore issues 8573 and 8483: _strerror might throw ValueError; asyncore...Giampaolo Rodolà2010-05-061-5/+18
* Fix for line wrap ugly.Josiah Carlson2009-06-031-2/+1
* This fixes bug 5798 on OS X.Josiah Carlson2009-06-031-2/+8
* Fix for failing asyncore tests.Josiah Carlson2009-04-011-1/+1
* Made handle_expt_event() be called last, so that we don't accidentally readJosiah Carlson2009-03-311-2/+2
* This resolves issue 1161031. Tests pass.Josiah Carlson2009-03-311-27/+25
* Fix for issue 4332 in trunk.Josiah Carlson2008-11-191-1/+1
* undoing change that broke trunk. Need to find a better solution to this.Josiah Carlson2008-09-071-1/+1
* This fixes a small inconsistency between trunk and 3.0, closing bug 3764.Josiah Carlson2008-09-071-1/+1
* Remove a dict.has_key() use to silence a warning when running under -3.Brett Cannon2008-08-021-1/+1
* Remove exception indexing in asyncore.Georg Brandl2008-07-201-9/+9
* Fix for the AttributeError in test_asynchat.Josiah Carlson2008-07-111-1/+1
* Fixed bugs 760475, 953599, and 1519.Josiah Carlson2008-07-071-2/+4
* Fixed test to reflect new filedispatcher semantics, as well as twoJosiah Carlson2008-06-101-2/+2
* Applying updated patch from Issue 1736190, which addresses partialJosiah Carlson2008-06-101-46/+113
* No need to import exceptions, they are builtinsNeal Norwitz2005-09-011-2/+1
* [Bug #1011606] Only check file descriptors for exceptional conditions if the ...Andrew M. Kuchling2004-09-011-4/+10
* Back out patch #982681Andrew M. Kuchling2004-08-131-8/+2
* Whitespace normalization, via reindent.py.Tim Peters2004-07-181-2/+2
* [Patch #982681] Apply this patch correctly; makes set_reuse_addr() work on Wi...Andrew M. Kuchling2004-07-151-3/+9
* In poll(), check connections for exceptional conditionsAndrew M. Kuchling2004-07-101-0/+15
* Return value from .close(); move .set_file upAndrew M. Kuchling2004-07-101-2/+2
* Whitespace normalization.Tim Peters2004-07-071-4/+3
* For readable() objects, the previous value of 'flags' was ignored.Andrew M. Kuchling2004-07-071-2/+2
* Check in the updated version of patch #957240, which doesn't relyMichael W. Hudson2004-06-301-3/+10
* Back out #957240.Martin v. Löwis2004-06-141-3/+2
* Patch #957240: Add count parameter to asyncore.loop.Martin v. Löwis2004-06-031-2/+3
* [Part of patch #909005] Added map parameter for file_dispatcher and dispatche...Andrew M. Kuchling2004-03-211-4/+4
* [Part of patch #909005] Repeating exception changed from 'raise socket.error,...Andrew M. Kuchling2004-03-211-5/+5
* [Part of patch #909005] Remove Mac code for writableAndrew M. Kuchling2004-03-211-8/+2
* [Part of patch #909005] Set initial poll flagsAndrew M. Kuchling2004-03-211-2/+2
* [Part of patch #909005] Use True/FalseAndrew M. Kuchling2004-03-211-13/+13
* [Part of patch #909005] Handle POLLPRI flag, and various errors cases. Fixes...Andrew M. Kuchling2004-03-211-1/+3
* SF bug #892492: Multiple close() for asyncore.dispatcher.Raymond Hettinger2004-02-081-0/+1
* [Part of patch #648322] Delete the poll2() function, which uses a 'poll' exte...Andrew M. Kuchling2003-10-221-29/+4
* [Bug #758241] When you use asyncore with a non-default map, methodsAndrew M. Kuchling2003-10-221-2/+7